bdeSetBlockParameterTextTooltip
Sets a description for a textParameter within block. Works with inline blocks. Super blocks are inlined blocks.
Syntax
bdeSetBlockParameterTextTooltip(block, textParameter, description)
Inputs
- block
- The block that the text parameter is in.
- textParameter
- The name of the text parameter.
- description
- A string to set the tooltip for a text parameter to. Tooltip has useful information about the text.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockParameterTextTooltip(block, 'testingText', 'This text is for the testing parameter.');