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.
- iconName
- The name of the text icon to get font size of.
Outputs
- fontSize
- The font size of the text icon iconName.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
fontSize = bdeGetBlockTextIconFontSize(block, 'text2');
fontSize = 12