Ejemplo n.º 1
0
            public RSRow AddRSRow(string n, string a, TURow parentTURowByTU_RS)
            {
                RSRow rowRSRow = ((RSRow)(this.NewRow()));

                rowRSRow.ItemArray = new object[] {
                    n,
                    a,
                    parentTURowByTU_RS[1]
                };
                this.Rows.Add(rowRSRow);
                return(rowRSRow);
            }
Ejemplo n.º 2
0
 public RSRowChangeEvent(RSRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveRSRow(RSRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddRSRow(RSRow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 5
0
			public RSRowChangeEvent(RSRow row, DataRowAction action)
			{
				this.eventRow = row;
				this.eventAction = action;
			}
Ejemplo n.º 6
0
			public void RemoveRSRow(RSRow row)
			{
				this.Rows.Remove(row);
			}
Ejemplo n.º 7
0
			public void AddRSRow(RSRow row)
			{
				this.Rows.Add(row);
			}