Ejemplo n.º 1
0
            public ListRecordCountRow AddListRecordCountRow(string Recordsearched, string MatchesFound)
            {
                ListRecordCountRow rowListRecordCountRow = ((ListRecordCountRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Recordsearched,
                    MatchesFound
                };
                rowListRecordCountRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowListRecordCountRow);
                return(rowListRecordCountRow);
            }
Ejemplo n.º 2
0
 public void RemoveListRecordCountRow(ListRecordCountRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 3
0
 public void AddListRecordCountRow(ListRecordCountRow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 4
0
 public ListRecordCountRowChangeEvent(ListRecordCountRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }