Share via


LineDisplay.CursorUpdate Property (POS for .NET v1.12 SDK Documentation)

2/27/2008

Gets or sets the Boolean value that indicates whether characters are updated.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public MustOverride Property CursorUpdate As Boolean
public abstract bool CursorUpdate { get; set; }
public:
virtual property bool CursorUpdate {
    bool get () abstract;
    void set (bool value) abstract;
}
/** @property */
public abstract boolean get_CursorUpdate ()

/** @property */
public abstract void set_CursorUpdate (boolean value)
public abstract function get CursorUpdate () : boolean

public abstract function set CursorUpdate (value : boolean)

Remarks

If true, when characters are displayed by using the DisplayText and DisplayTextAt methods, then the CursorRow and CursorColumn properties will be updated to point to the character beyond the last character output.

CursorUpdate is set and maintained for each window. It is initialized to true by the Open and CreateWindow methods, then updated when the CurrentWindow property is set or the DestroyWindow method is called.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

LineDisplay Class
LineDisplay Members
Microsoft.PointOfService Namespace
LineDisplay.CursorRow Property
LineDisplay.CursorColumn Property
LineDisplay.CurrentWindow Property
LineDisplay.CreateWindow Method
LineDisplay.DestroyWindow Method