コード例 #1
0
            public LocationsRow AddLocationsRow(string Location)
            {
                LocationsRow rowLocationsRow = ((LocationsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Location
                };
                rowLocationsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowLocationsRow);
                return(rowLocationsRow);
            }
コード例 #2
0
 public LocationsRowChangeEvent(LocationsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveLocationsRow(LocationsRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddLocationsRow(LocationsRow row)
 {
     this.Rows.Add(row);
 }