TImageEnVect.ObjSoftShadow
Declaration
property ObjSoftShadow[hobj: integer]: TIEVSoftShadow;
Description
ObjSoftShadow enables and sets the object shadow properties.
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.
ImageEnVect.ObjSoftShadow[IEV_NEXT_INSERTED_OBJECT].Enabled := True;
Transition Information
If you are transitioning your code to
TImageEnView Layers, instead of ObjSoftShadow, use:
TIELayer.SoftShadow
ImageEnView1.CurrentLayer.SoftShadow := ...;
ImageEnView1.Update();