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.
Type: block
textParameter
The name of the text parameter.
Type: string
description
A string to set the tooltip for a text parameter to. Tooltip has useful information about the text.
Type: string

Examples

Set the tooltip of a text parameter in a block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockParameterTextTooltip(block, 'testingText', 'This text is for the testing parameter.');