Interface ICursorVirtualCoordinates
Provides the functionality for getting the virtual coordinates of the cursor. Collapsings can change the virtual coordinates.
Namespace: Syncfusion.Windows.Forms.Edit.Interfaces
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public interface ICursorVirtualCoordinates
Properties
Column
Gets or sets the column index of cursor.
Declaration
int Column { get; set; }
Property Value
Type |
---|
System.Int32 |
Line
Gets or sets the line index of cursor.
Declaration
int Line { get; set; }
Property Value
Type |
---|
System.Int32 |
Position
Gets or sets the current position of cursor.
Declaration
Point Position { get; set; }
Property Value
Type |
---|
System.Drawing.Point |
Events
CoordinatesChanged
Occurs when position of the cursor was changed.
Declaration
event EventHandler CoordinatesChanged
Event Type
Type |
---|
System.EventHandler |