bdeGetBlockTextIconNames

Gets the names of the text icons in block.

Syntax

iconNames = bdeGetBlockTextIconNames(block)

Inputs

block
The block to get the text icon names of.
Type: block

Outputs

iconNames
The names of the text icons of block.
Type: list

Examples

Get the names of the text icons in block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          iconNames = bdeGetBlockTextIconNames(block);
        

          
            iconNames = 
            {
            [1,1] text1
            [2,1] text2
            }