MetaTable.GetFilteredColumns Method
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.
Retrieves a list of columns that are filterable.
public:
virtual System::Collections::Generic::IEnumerable<System::Web::DynamicData::MetaColumn ^> ^ GetFilteredColumns();
public virtual System.Collections.Generic.IEnumerable<System.Web.DynamicData.MetaColumn> GetFilteredColumns ();
abstract member GetFilteredColumns : unit -> seq<System.Web.DynamicData.MetaColumn>
override this.GetFilteredColumns : unit -> seq<System.Web.DynamicData.MetaColumn>
Public Overridable Function GetFilteredColumns () As IEnumerable(Of MetaColumn)
Returns
A list of columns that are filterable.
Remarks
A column is filterable if it is annotated with the DisplayColumnAttribute attribute and the Enabled
property of the FilterAttribute attribute of the column is set to true
.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.