ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntity Class / AttribFlags Property




In This Topic
    AttribFlags Property
    In This Topic
    Gets flags indicating which optional attributes are present for the entity.
    Syntax
    'Declaration
     
    Public ReadOnly Property AttribFlags As Integer
    'Usage
     
    Dim instance As ImGearVectorEntity
    Dim value As Integer
     
    value = instance.AttribFlags
    public int AttribFlags {get;}
    public: __property int get_AttribFlags();
    public:
    property int AttribFlags {
       int get();
    }

    Property Value

    Or combination of ImGearVectAttrib enumeration values or 0.
    Remarks

    An entity may have different optional attributes such as draw color, fill color, line type, fill type, offset, rotation, scale and position. These attributes do not exist until they are created.

    Note: OFFSET, ROTATION, SCALE and POSITON flags are deprecated and should not be used. Use Move, Rotate, Scale, GetMatrix and SetMatrix methods to manipulate the corresponding attributes.

    See Also