TImageEnVect.ObjFontHeight
Declaration
property ObjFontHeight[hobj: integer]: integer;
Description
ObjFontHeight specifies the font height for iekTEXT object hobj.
hobj is the ID of the object. You can also specify IEV_NEXT_INSERTED_OBJECT (-1) which refers to the next object to be inserted or IEV_PREVIOUS_INSERTED_OBJECT (-2) for the last object inserted.
Run-time only
Transition Information
If you are transitioning your code to
TImageEnView Layers, instead of ObjFontHeight, use:
TIETextLayer.Font or
TIELineLayer.LabelFont
TIETextLayer( ImageEnView1.CurrentLayer ).Font.Height := 18;
ImageEnView1.Update();