LineDisplayCursorAttributes.IsAutoAdvanceEnabled Property

Definition

Gets or sets whether automatic advancing of the cursor is enabled.

public:
 property bool IsAutoAdvanceEnabled { bool get(); void set(bool value); };
bool IsAutoAdvanceEnabled();

void IsAutoAdvanceEnabled(bool value);
public bool IsAutoAdvanceEnabled { get; set; }
var boolean = lineDisplayCursorAttributes.isAutoAdvanceEnabled;
lineDisplayCursorAttributes.isAutoAdvanceEnabled = boolean;
Public Property IsAutoAdvanceEnabled As Boolean

Property Value

Boolean

bool

True if automatic advancing is enabled; otherwise, False.

Remarks

When set to True, the cursor’s Position will be automatically updated to point to the next character to be displayed, whenever text is displayed. When False, the cursor position will not be automatically updated when characters are displayed.

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

Applies to

See also