bdeShowBlockParametersDialog

Shows the given dialog box.

Syntax

bdeShowBlockParametersDialog(dialog, caption, modal)

Inputs

dialog
The dialog to show.
Type: dialog
caption
The caption for the dialog box. Descriptor for what the dialog box means.
Type: string
modal
Boolean that represents whether you are able to interact with just the dialog box or the dialog box and everything behind it. true - have to interact with the dialog before you can interact with anything behind it. false - You are able to interact with anything.
Type: Boolean

Examples

Show the dialog box:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          dialog = bdeCreateBlockParametersDiaglogFromBlock(block, widget, false);
          bdeShowBlockParametersDialog(dialog, 'Test Parameters Dialog', true);