bdeGetBlockParameterEditorButtonImage

Returns the button image of a parameter in a given block that has a editor or uneditor widget.

Syntax

buttonImage = bdeGetBlockParameterEditorButtonImage(block, parameter)

Inputs

block
The block that the parameter is in.
Type: block
parameter
The name of the parameter to get the editor button image of.
Type: string

Outputs

buttonImage
The image of button for the editor or uneditor widget.
Type: string

Examples

Get a parameter's editor button image:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          buttonImage = bdeGetBlockParameterEditorButtonImage(block, 'testParam');
        

          
            buttonImage = glyphPlotSplineStrip