bdeGetBlockTextIconFontSize

Gets the font size of the text icon iconName in block.

Syntax

fontSize = bdeGetBlockTextIconFontSize(block, iconName)

Inputs

block
The block that the text icon iconName is in.
Type: block
iconName
The name of the text icon to get font size of.
Type: string

Outputs

fontSize
The font size of the text icon iconName.
Type: integer

Examples

Get the font size of text icon iconName within block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          fontSize = bdeGetBlockTextIconFontSize(block, 'text2');
        

          
            fontSize = 12