ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntityBeziercurve Class / Flags Property




In This Topic
    Flags Property (ImGearVectorEntityBeziercurve)
    In This Topic
    Gets or sets different flags of the interpolated curve.
    Syntax
    'Declaration
     
    Public Property Flags As Integer
    'Usage
     
    Dim instance As ImGearVectorEntityBeziercurve
    Dim value As Integer
     
    instance.Flags = value
     
    value = instance.Flags
    public int Flags {get; set;}
    public: __property int get_Flags();
    public: __property void set_Flags( 
       int value
    );
    public:
    property int Flags {
       int get();
       void set (    int value);
    }

    Property Value

    Combination of ImGearVectNURBSFlags enumeration values or 0.
    Remarks
    If the curve is closed, the only possible flag is ImGearVectNURBSFlags.MCLOSED. The default value is 0.
    See Also