bdeGetBlockParameterButtonTooltip
Returns the tooltip of buttonParameter in a given block.
Syntax
tooltip = bdeGetBlockParameterButtonTooltip(block, buttonParameter)
Inputs
- block
- The block that the parameter is in.
- buttonParameter
- The name of the button parameter.
Outputs
- tooltip
- The tooltip of the button parameter. This contains useful information about the button parameter.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
tooltip = bdeGetBlockParameterButtonTooltip(block, 'button1');
tooltip = This is a button used within the user created block