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.
 - parameterName
 - The name of the parameter to get the tooltip of.
 
Outputs
- tooltip
 - The tooltip of the text parameter.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          tooltip = bdeGetBlockParameterTextTooltip(block, 'testingText');
        
        
          
            tooltip = This text is for the testing parameter.