ViewerScrollY - property of the PmgRoot object
Description:
The Y-coordinate of the upper left corner of the visible panel content displayed in the panel window. A shift of panel content in the panel window is relevant if the panel is larger than the window where the panel is viewed. Then the content can be moved by scrollbars.
Syntax:
Long ViewerScrollY
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 nScroolY = oRoot.ViewerScrollY; //reading
oRoot.ViewerScrollY = 600; //writing
Dim oRoot, nScroolY
Set oRoot = pMe.Root
nScroolY = oRoot.ViewerScrollY 'reading
oRoot.ViewerScrollY = 600 'writing