DIAdem Help

Method: RunDefaultColCtrlPreset for XTable

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

Method: RunDefaultColCtrlPreset for XTable

Triggers the EventDefaultColCtrlPreSet event for the XTable control in user dialog boxes. You can use this event to configure the controls that are assigned to the columns of an extended table and that are <Default> type.

Object.RunDefaultColCtrlPreset
ObjectXTable
Object with this method

The following example triggers the event EventDefaultColCtrlPreSet after the Button1 button is clicked for the XTable1 extended table:

Sub XTable1_EventDefaultColCtrlPreSet(ByRef This, ByRef Cell, IsInputCell)
  'Do something
End Sub

Sub Button1_EventClick(ByRef This)
   Call XTable1.RunDefaultColCtrlPreSet
End Sub