示例#1
0
 public DxfLayer(string name, DxfColor color)
     : this(name)
 {
     Color = color;
 }
示例#2
0
文件: DxfObject.cs 项目: nakijun/Dxf
 protected static short GetRawValue(DxfColor color)
 {
     return color?.RawValue ?? 0;
 }