bdeSetBlockParameterDialogFilePath
Sets the file path of a dialog box.
Syntax
bdeSetBlockParameterDialogFilePath(dialog, filepath)
Inputs
- dialog
- The dialog box to set the filepath of.
- filepath
- The filepath to set for the dialog box.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
widget = bdeGetTopLevelWidget();
dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
bdeSetBlockParameterDialogFilePath(dialog, 'C:\Users\user\Desktop\dialogFilePath');