bdeApplyBlockParametersEditor

Applies the changes that have been made through the editor apis.

Syntax

bdeApplyBlockParametersEditor(editor)

Inputs

editor
The editor of the block.
Type: editor

Examples

Apply the changes that have been made through an editor:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          widget = bdeGetTopLevelWidget();
          dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
          blockEditor = bdeGetBlockParametersEditor(dialog);
          /// Do changes through editor
          bdeApplyBlockParametersEditor(blockEditor);