Search
Table.CurrScrollRow Property
See Also
 



Gets or sets the topmost visible row of this table.

 Syntax

VB6  Copy Code

Public Property Get CurrScrollRow() As Long
Public Property Let CurrScrollRow( _
    ByVal value As Long _
)

C++  Copy Code

public:
int get_CurrScrollRow ()
void put_CurrScrollRow (
    int value
)

 Property Value

A long value. The default is 0.

 Remarks

Specifies the table's current scroll position - the topmost visible row. It can be changed either programmatically, by means of this property, or by the user using the scroll buttons displayed if Scrollable is set to true.

 See Also