Beispiel #1
0
        public SimpleRow AddRow()
        {
            SimpleRow result = new SimpleRow(this);

            values.Add(result);

            return result;
        }
Beispiel #2
0
 public void DeleteRow(SimpleRow row)
 {
     values.Remove(row);
 }
Beispiel #3
0
        public SimpleRow Clone()
        {
            SimpleRow row = new SimpleRow(this.parent);
            row.values.InsertRange(0, this.values);

            return row;
        }