Method: ShowDialog for DataPluginParameter <Navigator>
- Updated2024-09-12
- 1 minute(s) read
DIAdem NAVIGATOR > Methods > Method: ShowDialog for DataPluginParameter <Navigator>
Method: ShowDialog for DataPluginParameter <Navigator>
Opens the dialog box where you configure the parameters of the selected DataPlugin.
sShowDialog = Object.ShowDialog
| Object | DataPluginParameter <Navigator> Object with this method |
| sShowDialog | String Returns whether you canceled the dialog box or saved your settings. |
The following example opens the dialog box where you configure the export of data with the CSV DataPlugin, and saves the data of the Data Portal in the Data.csv file:
| VBScript | Python |
Dim oMyDPParams Set oMyDPParams = Navigator.Settings.CreateDataPluginParameter("CSV_Export") oMyDPParams.DecimalSign = eCSVExportDecimalSignComma oMyDPParams.TimeFormat = "#dd/mm/yyyy hh:nn:ss.ffff" If oMyDPParams.ShowDialog = "IDOk" Then Call DataFileSave("D:\Data.csv", oMyDPParams) End If