bdeShowBlockParameterDialogCancelButton
Sets the dialog box to have a cancel button.
Syntax
bdeShowBlockParameterDialogCancelButton(dialog)
Inputs
- dialog
- The dialog box to show a cancel button in.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
widget = bdeGetTopLevelWidget();
dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
bdeShowBlockParameterDialogCancelButton(dialog);
bdeShowBlockParameterDialog(dialog);