bdeSetBlockName
Sets the name for block. block is of type hwscpHyperBlock.
Syntax
bdeSetBlockName(block, name);
Inputs
- block
 - Block to set the name of.
 - name
 - Name to set the block's name to.
 
Examples
        Set a block's name:
        
    
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram)
          bdeSetBlockName(block, 'testName')