bdeGetBlockParameterEditorButtonText
Returns the button text of a parameter in a given block that has a editor or uneditor widget.
Syntax
buttonText = bdeGetBlockParameterEditorButtonText(block, parameter)
Inputs
- block
- The block that the parameter is in.
- parameter
- The parameter to get the editor button text of.
Outputs
- buttonText
- The text of the button that is part of the editor or uneditor widget.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
buttonText = bdeGetBlockParameterEditorButtonText(block, 'testParam');
buttonText = Test param editor