bdeSetBlockParameterTooltip
Sets a description for a parameter within block. This should contain useful information on how to use the block's parameter's valid options. Works with inline blocks. Super blocks are inlined blocks.
Syntax
bdeSetBlockParameterTooltip(block, parameter, description)
Inputs
- block
- The block that the parameter is in.
- parameter
- The parameter to set a description for.
- description
- A description of the parameter. Contains useful information on how to use the parameters within the block.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockParameterTooltip(block, 'testParam', 'Used as a test parameter. Include information for the valid options for the parameter.');