コード例 #1
0
            public PSortRow AddPSortRow(int ShooterId, string ClubId, int NrOfRounds)
            {
                PSortRow rowPSortRow = ((PSortRow)(this.NewRow()));

                rowPSortRow.ItemArray = new object[] {
                    ShooterId,
                    ClubId,
                    NrOfRounds
                };
                this.Rows.Add(rowPSortRow);
                return(rowPSortRow);
            }
コード例 #2
0
 public PSortRowChangeEvent(PSortRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemovePSortRow(PSortRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddPSortRow(PSortRow row)
 {
     this.Rows.Add(row);
 }
コード例 #5
0
 public PSortRowChangeEvent(PSortRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #6
0
 public void RemovePSortRow(PSortRow row) {
     this.Rows.Remove(row);
 }
コード例 #7
0
 public void AddPSortRow(PSortRow row) {
     this.Rows.Add(row);
 }
コード例 #8
0
 public PSortRowChangeEvent(PSortRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #9
0
 public PSortRowChangeEvent(PSortRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }