SetGridTopRow method (WinStudio scripts)

Applies To

IWSFormComponent interface, grid objects

Definition

Sets a row in the grid to be the top row.

Syntax

object.SetGridTopRow( integer )

  Part   Description
object Required. A reference to a grid object.
integer Required. The number that identifies which row is to be the top row.

Example

Sub Main()
   Dim iRow As Integer
   iRow = 2
   ThisForm.Components( "FormCollectionGrid" ).SetGridTopRow(iRow)
End Sub