A dxf BLOCK element.
Inheritance: DXFLibrary.Element
示例#1
0
 public void add(Block b)
 {
     this.blocks.addBlock(b);
 }
示例#2
0
 public void addBlock(Block b)
 {
     this.elements.Add(b);
 }
示例#3
0
 public EndBlk(Block b)
     : this()
 {
     if(b.GetIndexFor(5)!=-1) this.AddData(b.GetDataFor(5));
     if(b.GetIndexFor(8)!=-1) this.AddData(b.GetDataFor(8));
 }