bdeGetBlockTextIconValue

Gets the value of the text icon name in block.

Syntax

textValue = bdeGetBlockTextIconValue(block, name)

Inputs

block
The block to get the text icon name value of.
Type: block
name
The name of the text icon to get the value of.
Type: string

Outputs

textValue
The value of the text icon name.
Type: string

Examples

Get the text value of text icon name within block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          textValue = bdeGetBlockTextIconValue(block, 'text2');
        

          
            textValue = testText