ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorEntityArc Class / Clockwise Property




In This Topic
    Clockwise Property
    In This Topic
    Gets or sets a value indicating whether a drawing direction of the elliptical arc is clockwise.
    Syntax
    'Declaration
     
    Public Property Clockwise As Boolean
    'Usage
     
    Dim instance As ImGearVectorEntityArc
    Dim value As Boolean
     
    instance.Clockwise = value
     
    value = instance.Clockwise
    public bool Clockwise {get; set;}
    public: __property bool get_Clockwise();
    public: __property void set_Clockwise( 
       bool value
    );
    public:
    property bool Clockwise {
       bool get();
       void set (    bool value);
    }

    Property Value

    If true then drawing direction is clockwise, otherwise it is counter clockwise.
    Remarks
    The default value is true.
    See Also