ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearMagnifier Class / Cursor Property
Example




In This Topic
    Cursor Property (ImGearMagnifier)
    In This Topic
    Gets or sets cursor used while magnifying page area.
    Syntax
    'Declaration
     
    Public Property Cursor As Cursor
    'Usage
     
    Dim instance As ImGearMagnifier
    Dim value As Cursor
     
    instance.Cursor = value
     
    value = instance.Cursor
    public Cursor Cursor {get; set;}
    public: __property Cursor* get_Cursor();
    public: __property void set_Cursor( 
       Cursor* value
    );
    public:
    property Cursor^ Cursor {
       Cursor^ get();
       void set (    Cursor^ value);
    }

    Property Value

    System.Windows.Forms.Cursor class object.
    Example
    igMagnifier.Cursor = System.Windows.Forms.Cursors.NoMoveHoriz;
    igMagnifier.Cursor = System.Windows.Forms.Cursors.NoMoveHoriz
    See Also