Ejemplo n.º 1
0
        public override BaseElement Clone()
        {
            DataGridField clone = new DataGridField();

            clone.SetValues(this);
            return(clone);
        }
Ejemplo n.º 2
0
 public void SetValues(DataGridField otherField)
 {
     name   = otherField.Name;
     _value = otherField.Value;
 }