bdeGetBlockLabelPosition

Gets the position of the label of block.

Syntax

labelPos = bdeGetBlockLabelPosition(block)

Inputs

block
The block to get the position of it's label.
Type: block

Outputs

labelPos
Position of the label of block. Will return as one of the following options: bottom, top, right, left.
Type: string

Examples

Find a block's label's position:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          labelPos = bdeGetBlockLabelPosition(block)
        

          labelPos = bottom