bdeSetBlockShortDescription
Sets a short description of a given block.
Syntax
bdeSetBlockShortDescription(block, description)
Inputs
- block
 - The block to set a short description for.
 - description
 - The string to set as a short description of the block.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockShortDescription(block, 'TestDescription');