bdeConvertToSuperBlock

Takes diagram and stores all items within a Super Block.

Syntax

superBlock = bdeConvertToSuperBlock(diagram, items)

Inputs

diagram
Diagram being used.
Type: diagram
items
List of items that are being converted to a Super Block.
Type: list

Outputs

superBlock
The superBlock created from the diagram and items.
Type: HyperBlock

Examples

Place items from diagram into a super block:
diagram = bdeGetCurrentDiagram();
        items = bdeGetItemsInDiagram();
        superBlock = bdeConvertToSuperBlock(diagram, items)