DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: LastVisibleRow for XTable

Property: LastVisibleRow for XTable

Specifies in user dialog boxes the index of the row that the extended table displays as last visible row.

Object.LastVisibleRow
ObjectXTable
Object with this property
Object.LastVisibleRowLongInteger with read access

The following example shows the last row and column of the XTable1 table that are visible when the Button1 button is pressed.

Sub Button1_EventClick(ByRef This)
  Call MsgBox("Last visible row/column: " & XTable1.LastVisibleRow & " / " & XTable1.LastVisibleCol)
End Sub

Use

You can use this property in scripts during user dialog box runtime.
Was this information helpful?