ITreeViewFilter.cs 302 B

12345678
  1. namespace Terminal.Gui;
  2. /// <summary>Provides filtering for a <see cref="TreeView"/>.</summary>
  3. public interface ITreeViewFilter<T> where T : class
  4. {
  5. /// <summary>Return <see langword="true"/> if the <paramref name="model"/> should be included in the tree.</summary>
  6. bool IsMatch (T model);
  7. }