예제 #1
0
            public MAPRow AddMAPRow(string mn, KBRow parentKBRowByKB_MAP)
            {
                MAPRow rowMAPRow = ((MAPRow)(this.NewRow()));

                rowMAPRow.ItemArray = new object[] {
                    mn,
                    parentKBRowByKB_MAP[4]
                };
                this.Rows.Add(rowMAPRow);
                return(rowMAPRow);
            }
예제 #2
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);
            }
예제 #3
0
 public MAPRowChangeEvent(MAPRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #4
0
 public void RemoveMAPRow(MAPRow row)
 {
     this.Rows.Remove(row);
 }
예제 #5
0
 public void AddMAPRow(MAPRow row)
 {
     this.Rows.Add(row);
 }
예제 #6
0
			public MAPRowChangeEvent(MAPRow row, DataRowAction action)
			{
				this.eventRow = row;
				this.eventAction = action;
			}
예제 #7
0
			public void RemoveMAPRow(MAPRow row)
			{
				this.Rows.Remove(row);
			}
예제 #8
0
			public void AddMAPRow(MAPRow row)
			{
				this.Rows.Add(row);
			}
예제 #9
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;
			}