ITableColumnDefinition.FilterPresets Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Ř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", ....}.