Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/04/14 14:57:53 (10 years ago)
Author:
pfleck
Message:
  • Implemented preserve/copy columns on transformations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/TransformationView.cs

    r10945 r10948  
    6060
    6161      var transformator = new PreprocessingTransformator(Content.Data);
     62      bool preserve = preserveColumnsCheckbox.CheckState == CheckState.Checked;
    6263      string errorMsg;
    63       bool success = transformator.ApplyTransformations(transformations, out errorMsg);
     64      bool success = transformator.ApplyTransformations(transformations, preserve, out errorMsg);
    6465      if (success) {
    6566        Content.CheckedTransformationList.Clear();
Note: See TracChangeset for help on using the changeset viewer.