ITableColumnDefinition.FilterPresets プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このリストのフィルター可能な項目として常に存在する文字列。
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",
};
注釈
たとえば、常に "Errors"、"Warnings"、"Messages" をフィルター オプションとして表示する場合は、エラーがない場合でも、新しい List が返されます。(3){"Errors", ....}.