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.
Type: block
textIconName
The name of the text icon to check if clipped.
Type: string

Outputs

clipped
Boolean of whether or not the textIconName is clipped. 1 if it is clipped and 0 if it is not clipped.
Type: Boolean

Examples

Check to see if block's text is clipped:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          clipped = bdeIsBlockTextIconClipped(block, 'text1');
        

          
            clipped = 0