コード例 #1
0
 public commandsRow AddcommandsRow(programRow parentprogramRowByprogram_commands) {
     commandsRow rowcommandsRow = ((commandsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null};
     if ((parentprogramRowByprogram_commands != null)) {
         columnValuesArray[1] = parentprogramRowByprogram_commands[2];
     }
     rowcommandsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowcommandsRow);
     return rowcommandsRow;
 }
コード例 #2
0
 public void AddprogramRow(programRow row) {
     this.Rows.Add(row);
 }
コード例 #3
0
 public void RemoveprogramRow(programRow row) {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public programRowChangeEvent(programRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }