bdeGetBlockParameterTextTooltip

Returns the tooltip of a given text parameter, parameterName, within block.

Syntax

tooltip = bdeGetBlockParameterTextTooltip(block, parameterName)

Inputs

block
The block that the text parameter is in.
Type: block
parameterName
The name of the parameter to get the tooltip of.
Type: string

Outputs

tooltip
The tooltip of the text parameter.
Type: string

Examples

Get the tooltip of a text parameter in a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          tooltip = bdeGetBlockParameterTextTooltip(block, 'testingText');
        

          
            tooltip = This text is for the testing parameter.