Exemple #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);
            }
Exemple #2
0
            public KBRow AddKBRow(string docVersion, string srcName, string tgtName, string max)
            {
                KBRow rowKBRow = ((KBRow)(this.NewRow()));

                rowKBRow.ItemArray = new object[] {
                    docVersion,
                    srcName,
                    tgtName,
                    max,
                    null
                };
                this.Rows.Add(rowKBRow);
                return(rowKBRow);
            }
Exemple #3
0
 public KBRowChangeEvent(KBRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #4
0
 public void RemoveKBRow(KBRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #5
0
 public void AddKBRow(KBRow row)
 {
     this.Rows.Add(row);
 }
Exemple #6
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;
			}
Exemple #7
0
			public KBRowChangeEvent(KBRow row, DataRowAction action)
			{
				this.eventRow = row;
				this.eventAction = action;
			}
Exemple #8
0
			public void RemoveKBRow(KBRow row)
			{
				this.Rows.Remove(row);
			}
Exemple #9
0
			public void AddKBRow(KBRow row)
			{
				this.Rows.Add(row);
			}