bdeIsBlockTextIconClipped
Returns whether or not the block's textIconName is clipped.
Syntax
clipped = bdeIsBlockTextIconClipped(block, textIconName)
Inputs
- block
- The block which the text icon is in.
- textIconName
- The name of the text icon to check if clipped.
Outputs
- clipped
- Boolean of whether or not the textIconName is clipped. 1 if it is clipped and 0 if it is not clipped.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
clipped = bdeIsBlockTextIconClipped(block, 'text1');
clipped = 0