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.
Type: block
parameter
The parameter to get the editor button text of.
Type: string

Outputs

buttonText
The text of the button that is part of the editor or uneditor widget.
Type: string

Examples

Get a parameter's editor button text:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          buttonText = bdeGetBlockParameterEditorButtonText(block, 'testParam');
        

          
            buttonText = Test param editor