bdeGetBlockParametersEditor
Returns a parameters editor from the given dialog.
Syntax
editor = bdeGetBlockParametersEditor(dialog)
Inputs
- dialog
- The dialog to get the editor of.
Outputs
- editor
- An editor for the parameters from the dialog.
Examples
Get an editor from the dialog of a block:
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
widget = bdeGetTopLevelWidget();
dialog = bdeCreateBlockParametersDialogFromBlock(block, widget, false);
blockEditor = bdeGetBlockParametersEditor(dialog);
blockEditor = hwscpBlockParametersEditor