コード例 #1
0
            public CenterStatusRow AddCenterStatusRow(long CENTERSTID, string NAME)
            {
                CenterStatusRow rowCenterStatusRow = ((CenterStatusRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    CENTERSTID,
                    NAME
                };
                rowCenterStatusRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowCenterStatusRow);
                return(rowCenterStatusRow);
            }
コード例 #2
0
 public CenterStatusRowChangeEvent(CenterStatusRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveCenterStatusRow(CenterStatusRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddCenterStatusRow(CenterStatusRow row)
 {
     this.Rows.Add(row);
 }