Example #1
0
            public TURow AddTURow(string f, string k, MAPRow parentMAPRowByMAP_TU)
            {
                TURow rowTURow = ((TURow)(this.NewRow()));

                rowTURow.ItemArray = new object[] {
                    f,
                    k,
                    parentMAPRowByMAP_TU[0]
                };
                this.Rows.Add(rowTURow);
                return(rowTURow);
            }
Example #2
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);
            }
Example #3
0
 public TURowChangeEvent(TURow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #4
0
 public void RemoveTURow(TURow row)
 {
     this.Rows.Remove(row);
 }
Example #5
0
 public void AddTURow(TURow row)
 {
     this.Rows.Add(row);
 }
Example #6
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;
			}
Example #7
0
			public TURowChangeEvent(TURow row, DataRowAction action)
			{
				this.eventRow = row;
				this.eventAction = action;
			}
Example #8
0
			public void RemoveTURow(TURow row)
			{
				this.Rows.Remove(row);
			}
Example #9
0
			public void AddTURow(TURow row)
			{
				this.Rows.Add(row);
			}