DIAdem Help

Method: Refresh for Table

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

Method: Refresh for Table

Triggers the EventRefresh event in user dialog boxes. You can use this method to refresh the Table control, when another control changes the data of this control.

Object.Refresh
ObjectTable
Object with this method

The following example triggers the event EventRefresh after the Button1 button is clicked for the Table1 table:

Sub Button1_EventClick(ByRef This)
  Table1.ColumnTitlesDisplay = FALSE
  Call Table1.Refresh
End Sub