Article | 60000658 |
Type | Wish |
Product | Engine |
Version | 6013 |
Date Added | 10/5/2008 12:00:00 AM |
Fixed | (10/6/2008 12:00:00 AM) |
Submitted by | David Stephens |
Summary
Entities of Blocks belong in Layer 0 and with PenColor ByLayer to display the color of their block reference Layer.
Solution
In version 6014 a new property was added in vdDocument object:
///
<summary>/// Controls the display of the color of entities inside block belongs in Layer 0 and with it's color equals to ByLayer.
/// </summary>
/// <remarks>Defualt value is <see cref="vdDocument.BlockColorOperEnum.BlockLayer"/>
///
Value is saved by document. /// Value is not added to undo history. /// </remarks>vdDocument.BlockColorOperEnum BlockColorOper
///
<summary>/// Controls the display of the color of entities inside block belongs in Layer 0 and with it's color equals to ByLayer
/// </summary>
public enum BlockColorOperEnum
{
/// <summary>
/// Entity will finaly get will be the color of the layer of the block that belongs.
/// </summary>
BlockLayer = 0,
/// <summary>
/// Entity will finaly get will be the color of the block and not the color of the block's layer.
/// </summary>
BlockColor = 1,
}