VerticalGridScrollUp method (WinStudio scripts)
Applies To
IWSFormComponent interface
Definition
This method allows the user to scroll up through a set of records one page at a time.
Syntax
object.VerticalGridScrollUp()
Part | Description |
object | Required. A reference to a form or form component object. |
Remarks
This method can be used only with VerticalGrid components and then only if the No Scroll component property is set to True. If the No Scroll component property is set to False, this method does nothing.
Example
Sub Main() ThisForm.Components("MyGridComponent").VerticalGridScrollUp() End Sub