In This Topic

Cursor Property (GdViewer)

In This Topic
Gets or sets the cursor that is displayed when the mouse pointer is over the control.
Syntax
'Declaration
 
Public Overrides NotOverridable Property Cursor As Cursor
public override Cursor Cursor {get; set;}
public read-write property Cursor: Cursor; override; 
public override function get,set Cursor : Cursor
public: __property Cursor* get_Cursor() override;
public: __property void set_Cursor( 
   Cursor* value
) override;
public:
property Cursor^ Cursor {
   Cursor^ get() override;
   void set (    Cursor^ value) override;
}

Property Value

A System.Windows.Forms.Cursor that represents the cursor to display when the mouse pointer is over the control.
Remarks
It is recommended to not use this propety.
See Also