bdeSetBlockLabelPosition
Sets the position of the label of block.
Syntax
bdeSetBlockLabelPosition(block, position)
Inputs
- block
 - The block to change position of label.
 - position
 - Position to place the label. Options include right, left, top, bottom.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockLabelPosition(block, 'bottom');
          bdeRedrawDiagram(diagram)