The number of milliseconds between a pane's marquee progress updates.
Usage
Set_Property(OLECtrlEntID, "OLE.PaneMarqueeDelay[index]", Value)
Values
Value can be any positive or negative whole number:
Default: 100
Indices
Index | Description |
---|---|
index | Index to an existing pane |
Remarks
The PaneMarqueeDelay is for panes whose PaneType is "Progress Marquee". Marquee panes move a sequence of progress bar blocks left to right across themselves one block at a time. The PaneMarqueeDelay establishes the number of milliseconds a pane waits to move its caption one block again to the right.
To stop the marquee from automatically animating, just set this property to 0. You can call the UpdateMarquee method to advance the marquee manually.
Example
// Slow down the marquee for Pane 2 Set_Property(@Window:".OLE_STATUSBAR", "OLE.PaneMarqueeDelay[2]", 250) // Speed up the marquee for all panes Set_Property(@Window:".OLE_STATUSBAR", "OLE.PaneMarqueeDelay[All]", 10) // Stop animating the marquee in pane 3 Set_Property(@Window:".OLE_STATUSBAR", "OLE.PaneMarqueeDelay[3]", 0)