Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Interfaces/IFilteredPreprocessingData.cs @ 10962

Last change on this file since 10962 was 10900, checked in by sbreuer, 10 years ago
  • deleted unused method
  • refactored filter logic
  • added filter changed event
  • changed datagridview validation (cannot modify, if filter is active)
  • update datagridview if preview is active
File size: 409 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.DataPreprocessing.Interfaces
7{
8  public interface IFilteredPreprocessingData : ITransactionalPreprocessingData
9  {
10    void SetFilter(bool[] rowFilters);
11    void PersistFilter();
12    void ResetFilter();
13    bool IsFiltered { get; }
14
15    event EventHandler FilterChanged;
16   }
17}
Note: See TracBrowser for help on using the repository browser.