ViewerScrollX - property of the PmgRoot object
Description:
The X-coordinate of the left upper corner of visible panel content displayed in the panel window. Scroll of the panel content in the panel window is meaningful if the panel is greater than the window where the panel is viewed. Then the content can be moved by scrollbars.
Syntax:
Long ViewerScrollX
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oRoot = pMe.Root;
var nScroolX = oRoot.ViewerScrollX;
// Reading from the property
oRoot.ViewerScrollX = 600;
// Writing into the property
Dim oRoot
Set oRoot = pMe.Root
Dim nScroolX
nScroolX = oRoot.ViewerScrollX
' Reading from the property
oRoot.ViewerScrollX = 600
' Writing into the property