コード例 #1
0
            public DT_ReportRow AddDT_ReportRow(string F1, string F2, string F3, string F4, string F5, string F6, string F7, string F8, string F9, string F10)
            {
                DT_ReportRow rowDT_ReportRow = ((DT_ReportRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    F1,
                    F2,
                    F3,
                    F4,
                    F5,
                    F6,
                    F7,
                    F8,
                    F9,
                    F10
                };
                rowDT_ReportRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowDT_ReportRow);
                return(rowDT_ReportRow);
            }
コード例 #2
0
 public DT_ReportRowChangeEvent(DT_ReportRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveDT_ReportRow(DT_ReportRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddDT_ReportRow(DT_ReportRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
 public DT_ReportRowChangeEvent(DT_ReportRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #6
0
 public void RemoveDT_ReportRow(DT_ReportRow row) {
     this.Rows.Remove(row);
 }
コード例 #7
0
 public void AddDT_ReportRow(DT_ReportRow row) {
     this.Rows.Add(row);
 }