LineDisplayCursorAttributes.IsAutoAdvanceEnabled 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置是否启用游标的自动推进。
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
属性值
Boolean
bool
如果启用自动推进,则为 True;否则为 False。
注解
设置为 True 时,每当显示文本时,光标的位置将自动更新为指向要显示的下一个字符。 如果为 False,则显示字符时不会自动更新光标位置。
在下一次调用 LineDisplayCursor.TryUpdateAttributesAsync (LineDisplayCursorAttributes) 时,会将对此属性的更改提交到设备。