bdeSetBlockTextIconValue
Sets the value of text icon name to the block.
Syntax
bdeSetBlockTextIconValue(block, name, textValue)
Inputs
- block
- The block of which a text icon value will be set.
- name
- The name of the text icon.
- textValue
- The string to set the text icon name to.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockTextIconValue(block, 'text2', 'testText');