Пример #1
0
 // This copies properties to any other element
 public void CopyPropertiesTo(MapElement element)
 {
     //element.fields = new UniFields(this, this.fields);
     element.fields = new UniFields(element, this.fields);             //mxd
 }
Пример #2
0
 // New constructor
 ///<summary></summary>
 public UniFields(MapElement owner, int capacity) : base(capacity)
 {
     this.owner = owner;
 }
Пример #3
0
 // Copy constructor
 ///<summary></summary>
 public UniFields(MapElement owner, UniFields copyfrom) : base(copyfrom)
 {
     this.owner = owner;
 }
Пример #4
0
 // New constructor
 ///<summary></summary>
 public UniFields(MapElement owner) : base(2)
 {
     this.owner = owner;
 }