DIAdem Help

Method: RefreshRows for XTable

  • Updated2024-09-12
  • 2 minute(s) read

Method: RefreshRows for XTable

Refreshes one or more rows of an extended table in user dialog boxes. This refresh triggers the EventValGet event for the visible rows in the table.

Object.RefreshRows(FromRow, ToRow)
ObjectXTable
Object with this method
FromRowLongInteger
Specifies the first row to be refreshed.
ToRowLongInteger
Specifies the last row to be refreshed.

The following example refreshes the second and the third row in the extended table XTable1 after the Button1 button is pressed:

Sub Button1_EventClick(ByRef This)
  'Do something
  Call XTable1.RefreshRows(2,3)
End Sub