コード例 #1
0
            public tbStatisticReportsRow AddtbStatisticReportsRow(int nIdReport, string strName, string mstrData)
            {
                tbStatisticReportsRow rowtbStatisticReportsRow = ((tbStatisticReportsRow)(this.NewRow()));

                rowtbStatisticReportsRow.ItemArray = new object[] {
                    nIdReport,
                    strName,
                    mstrData
                };
                this.Rows.Add(rowtbStatisticReportsRow);
                return(rowtbStatisticReportsRow);
            }
コード例 #2
0
 public tbStatisticReportsRowChangeEvent(tbStatisticReportsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemovetbStatisticReportsRow(tbStatisticReportsRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddtbStatisticReportsRow(tbStatisticReportsRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
 public tbStatisticReportsRowChangeEvent(tbStatisticReportsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }