TableColumnDefinitionBase.FilterPresets Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The strings that always exist as filterable items for this list.
public:
virtual property System::Collections::Generic::IEnumerable<System::String ^> ^ FilterPresets { System::Collections::Generic::IEnumerable<System::String ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<string> FilterPresets { get; }
member this.FilterPresets : seq<string>
Public Overridable ReadOnly Property FilterPresets As IEnumerable(Of String)
Property Value
Returns IEnumerable<T>.
Implements
Remarks
For example, if you want to always show "Errors", "Warnings" and "Messages" as filtering options even if there are no errors then return new List(3){"Errors", ....}.