Exemplo n.º 1
0
 public tRow AddtRow(string value, shoeboxRow parentshoeboxRowByshoebox_t)
 {
     tRow rowtRow = ((tRow)(this.NewRow()));
     rowtRow.ItemArray = new object[] {
             value,
             null,
             parentshoeboxRowByshoebox_t[1]};
     this.Rows.Add(rowtRow);
     return rowtRow;
 }
Exemplo n.º 2
0
 public void RemoveshoeboxRow(shoeboxRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 3
0
 public shoeboxRowChangeEvent(shoeboxRow row, System.Data.DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemplo n.º 4
0
 public void AddshoeboxRow(shoeboxRow row)
 {
     this.Rows.Add(row);
 }