bdeGetBlockWidth

Gets the width of the given block.

Syntax

width = bdeGetBlockWidth(block)

Inputs

block
The block to get the width of.
Type: block

Outputs

width
Width of the block.
Type: double

Examples

Get a block's width:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          width = bdeGetBlockWidth(block);
        

          
            width = 72