bdeRedrawBlock

Redraws block within the diagram. block is of type hwscpHyperBlock.

Syntax

bdeRedrawBlock(block);

Inputs

block
Block to redraw.
Type: block

Examples

Select a block within the diagram:

          diagram = bdeGetCurrentDiagram();
          newBlock = bdeCreateBlock('system/MathOperations/Sum', diagram)
          bdeSelectBlock(newBlock, true);
          bdeRedrawBlock(newBlock)