Share via


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

2/27/2008

Gets or sets the wait time, specified in milliseconds, between marquee scrolling of each column or row in the window.

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

Syntax

'Declaration
Public MustOverride Property MarqueeUnitWait As Integer
public abstract int MarqueeUnitWait { get; set; }
public:
virtual property int MarqueeUnitWait {
    int get () abstract;
    void set (int value) abstract;
}
/** @property */
public abstract int get_MarqueeUnitWait ()

/** @property */
public abstract void set_MarqueeUnitWait (int value)
public abstract function get MarqueeUnitWait () : int

public abstract function set MarqueeUnitWait (value : int)

Remarks

Notice that the timer resolution can reduce the precision of the wait time.

MarqueeUnitWait is not used if MarqueeType is None.

The Open and CreateWindow methods initialize MarqueeUnitWait to zero, and it is updated when the application sets the CurrentWindow property or calls the DestroyWindow method.

Accessing MarqueeUnitWait may cause a PosControlException to be thrown with the following ErrorCode.

Value

Meaning

Illegal

The wait value specified was less than 0 (zero).

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.MarqueeType Property
LineDisplay.MarqueeFormat Property
LineDisplay.MarqueeRepeatWait Property
LineDisplay.CreateWindow Method
LineDisplay.CurrentWindow Property
LineDisplay.DestroyWindow Method