bdeSetBlockTextIconFontSize

Sets the font size of text icon textIconName in block.

Syntax

bdeSetBlockTextIconFontSize(block, textIconName, fontSize)

Inputs

block
The block which the text icon is in.
Type: block
textIconName
The name of the text icon.
Type: string
fontSize
Value to set the font size of the text icon textIconName to.
Type: integer

Examples

Set a block's text icon's font size:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockTextIconPosition(block, 'text2', 12);