LineDisplayCursorAttributes.Position Property

Definition

Gets or sets the position of the cursor.

public:
 property Point Position { Point get(); void set(Point value); };
Point Position();

void Position(Point value);
public Point Position { get; set; }
var point = lineDisplayCursorAttributes.position;
lineDisplayCursorAttributes.position = point;
Public Property Position As Point

Property Value

The position of the cursor.

Remarks

The maximum cursor position is described by the cursor owner’s LineDisplayWindow.Size property.

The default value of this property is {0,0}.

Changes to this property are committed to the device on the next call to LineDisplayCursor.TryUpdateAttributesAsync(LineDisplayCursorAttributes).

Applies to

See also