Prod.: Engine, ver.: 6013, ID: 60000658, Wish : Entities of Blocks belong in Layer 0 and with PenColor ByLayer to display the color of their block reference Layer.

Wish : Entities of Blocks belong in Layer 0 and with PenColor ByLayer to display the color of their block reference Layer.

Article60000658
TypeWish
ProductEngine
Version6013
Date Added10/5/2008
FixedYes [10/6/2008]
Submitted byDavid Stephens
Keywords

Subject

Entities of Blocks belong in Layer 0 and with PenColor ByLayer to display the color of their block reference Layer.

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,


}