The position of the horizontal scrollbar.
Usage
Set_Property(OLECtrlEntID, "OLE.Left", Value)
Values
Value can be any positive or negative whole number:
Default: 0
Remarks
The Left property determines the current location of the horizontal scrollbar. A value of zero indicates the scrollbar is all the way to the left.
Set this property to programmatically scroll the panel.
Example
// Get the current horizontal scroll position LeftPos = Get_Property(@Window:".OLE_PANEL", "OLE.Left") // Scroll 50 pixels to the right Set_Property(@Window:".OLE_PANEL", "OLE.Left", LeftPos + 50)