Udostępnij za pośrednictwem


ITableColumnDefinition.FilterPresets Właściwość

Definicja

Ciągi, które zawsze istnieją jako elementy filtrowalne dla tej listy.

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)

Wartość właściwości

Zwraca wartość IEnumerable<T>.

Przykłady

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

Uwagi

Jeśli na przykład chcesz zawsze wyświetlać "Błędy", "Ostrzeżenia" i "Komunikaty" jako opcje filtrowania, nawet jeśli nie ma żadnych błędów, zwróć nową listę. (3) {"Errors", ....}.

Dotyczy