Sdílet prostřednictvím


TableColumnDefinitionBase.FilterPresets Property

Definition

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", ....}.

Applies to