bdeGetBlockFrameColor
Gets the frame color of the block.
Syntax
color = bdeGetBlockFrameColor(block)
Inputs
- block
- The block to get the frame color of.
Outputs
- color
- The color of the frame of block.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
color = bdeGetBlockFrameColor(block);
color = struct [
alpha: 255
blue: 0
green: 255
red: 0
]