- Timestamp:
- 03/19/14 13:28:28 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridLogic.cs
r10621 r10622 120 120 } 121 121 122 public void DeleteRow(List<int> rows) { 123 preprocessingData.InTransaction(() => { 124 foreach (int rowIndex in rows) { 125 preprocessingData.DeleteRow(rowIndex); 126 } 127 }); 128 } 129 122 130 public event DataPreprocessingChangedEventHandler Changed { 123 131 add { preprocessingData.Changed += value; } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs
r10621 r10622 36 36 37 37 event DataPreprocessingChangedEventHandler Changed; 38 39 void DeleteRow(List<int> rows); 38 40 } 39 41 }
Note: See TracChangeset
for help on using the changeset viewer.