Sdílet prostřednictvím


ITableColumnDefinition.FilterPresets Vlastnost

Definice

Řetězce, které vždy existují jako filtrovatelné položky pro tento seznam.

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)

Hodnota vlastnosti

Vrací objekt IEnumerable<T>.

Příklady

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

Poznámky

Pokud například chcete jako možnosti filtrování vždy zobrazit "Chyby", "Upozornění" a "Zprávy", i když se nezobrazí žádné chyby, vrátí se nový seznam. (3) {"Chyby", ....}.

Platí pro