bdeGetBlockShortDescription
Returns a short description of a given block, if it has one.
Syntax
description = bdeGetBlockShortDescription(block)
Inputs
- block
- The block to get the short description of.
Outputs
- description
- A short description of block. Only will work if the block has a short description set.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
description = bdeGetBlockShortDescription(block);
description = TestDescription