Gets or sets the cursor used while panning page area.
Syntax
public Cursor SourceViewCursor {get; set;}
public: __property Cursor* get_SourceViewCursor();
public: __property void set_SourceViewCursor(
Cursor* value
);
'Declaration
Public Property SourceViewCursor As Cursor
'Usage
Dim instance As ImGearPan
Dim value As Cursor
instance.SourceViewCursor = value
value = instance.SourceViewCursor
Property Value
System.Windows.Forms.Cursor class. Default value is System.Windows.Forms.Cursors.Hand.
Example
igPan.Cursor = System.Windows.Forms.Cursors.Hand;
igPan.Cursor = System.Windows.Forms.Cursors.Hand
See Also