Beispiel #1
0
            public mytableRow AddmytableRow(string DataColumn1, string DataColumn2, string DataColumn3)
            {
                mytableRow rowmytableRow = ((mytableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    DataColumn1,
                    DataColumn2,
                    DataColumn3
                };
                rowmytableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowmytableRow);
                return(rowmytableRow);
            }
Beispiel #2
0
 public mytableRowChangeEvent(mytableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #3
0
 public void RemovemytableRow(mytableRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #4
0
 public void AddmytableRow(mytableRow row)
 {
     this.Rows.Add(row);
 }