bdeGetBlockParameterButtonTooltip

Returns the tooltip of buttonParameter in a given block.

Syntax

tooltip = bdeGetBlockParameterButtonTooltip(block, buttonParameter)

Inputs

block
The block that the parameter is in.
Type: block
buttonParameter
The name of the button parameter.
Type: string

Outputs

tooltip
The tooltip of the button parameter. This contains useful information about the button parameter.
Type: string

Examples

Get the tooltip of the button parameter of a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          tooltip = bdeGetBlockParameterButtonTooltip(block, 'button1');
        

          
            tooltip = This is a button used within the user created block