Поделиться через


ITableColumnDefinition.FilterPresets Свойство

Определение

Строки, которые всегда существуют в качестве фильтруемых элементов для этого списка.

public:
 property System::Collections::Generic::IEnumerable<System::String ^> ^ FilterPresets { System::Collections::Generic::IEnumerable<System::String ^> ^ get(); };
public System.Collections.Generic.IEnumerable<string> FilterPresets { get; }
member this.FilterPresets : seq<string>
Public ReadOnly Property FilterPresets As IEnumerable(Of String)

Значение свойства

Возвращает IEnumerable<T>.

Примеры

public IEnumerable{string} FilterPresets => new string[]
{
    // Always show "Errors", "Warnings" and "Messages" as filtering options even if there are no errors
    "Errors",
    "Warnings",
    "Messages",
};

Комментарии

Например, если вы хотите всегда отображать "Ошибки", "Предупреждения" и "Сообщения" в качестве параметров фильтрации, даже если ошибок нет, возвращается новый список. (3) {"Ошибки", ....}.

Применяется к