bdeSaveBlock
Saves block to pathname. block is of type hwscpHyperBlock. Block must be inline. This means the block is not included in the library system.
Syntax
bdeSaveBlock(block, pathname);
Inputs
- block
- Block to save.
- pathname
- Path to save the block to.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(d);
bdeSaveBlock(block, 'C:\Users\user\testFolder/test.scm');