Beispiel #1
0
 public XRecord()
 {
     this.codename    = DxfObjectCode.XRecord;
     this.handle      = string.Empty;
     this.ownerHandle = string.Empty;
     this.flags       = DictionaryCloningFlags.KeepExisting;
     this.entries     = new List <XRecordEntry>();
 }
Beispiel #2
0
 internal DictionaryObject(DxfObject owner)
     : base(DxfObjectCode.Dictionary)
 {
     this.isHardOwner = false;
     this.cloning     = DictionaryCloningFlags.KeepExisting;
     this.entries     = new Dictionary <string, string>();
     this.owner       = owner;
 }
Beispiel #3
0
 internal DictionaryObject(DxfObject owner)
     : base(DxfObjectCode.Dictionary)
 {
     this.isHardOwner = false;
     this.cloning = DictionaryCloningFlags.KeepExisting;
     this.entries = new Dictionary<string, string>();
     this.Owner = owner;
 }