bdeHideBlockParameterDialogHelpButton
Removes the help button from the dialog box.
Syntax
bdeHideBlockParameterDialogHelpButton(dialog)
Inputs
- dialog
- The dialog box to remove the help button from.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
widget = bdeGetTopLevelWidget();
dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
bdeHideBlockParameterDialogHelpButton(dialog);
bdeShowBlockParameterDialog(dialog);