LineDisplayCursorAttributes.IsAutoAdvanceEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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).