コード例 #1
0
            public RsListItemRow AddRsListItemRow(int RowIndex)
            {
                RsListItemRow rowRsListItemRow = ((RsListItemRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    RowIndex
                };
                rowRsListItemRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowRsListItemRow);
                return(rowRsListItemRow);
            }
コード例 #2
0
 public RsListItemRowChangeEvent(RsListItemRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveRsListItemRow(RsListItemRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddRsListItemRow(RsListItemRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
 public RsListItemRowChangeEvent(RsListItemRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #6
0
 public void RemoveRsListItemRow(RsListItemRow row) {
     this.Rows.Remove(row);
 }
コード例 #7
0
 public void AddRsListItemRow(RsListItemRow row) {
     this.Rows.Add(row);
 }