bdeGetBlockFrameColor

Gets the frame color of the block.

Syntax

color = bdeGetBlockFrameColor(block)

Inputs

block
The block to get the frame color of.
Type: block

Outputs

color
The color of the frame of block.
Type: color

Examples

Get the frame color of block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          color = bdeGetBlockFrameColor(block);
        

          
            color = struct [
            alpha: 255
            blue: 0
            green: 255
            red: 0
            ]