Skip to main content
Row

AutoFilterColumn.Top10Type Property

Returns the filter operator of the "Top 10" filter applied to a column.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

Top10Type Top10Type { get; }

Property Value

Type Description
Top10Type

A Top10Type enumeration member.

Available values:

Name Description
None

The filter criterion is not specified.

Top10Items

Shows values that fall in the top N bracket, where N is defined by the AutoFilterColumn.Top10Value property.

Top10Percent

Shows values that fall in the top N percent of the specified column values, where N is defined by the AutoFilterColumn.Top10Value property.

Bottom10Items

Shows values that fall in the bottom N bracket, where N is defined by the AutoFilterColumn.Top10Value property.

Bottom10Percent

Shows values that fall in the bottom N percent of the specified column values, where N is defined by the AutoFilterColumn.Top10Value property.

Remarks

The Top10Type property gets its value from the first parameter of the AutoFilterColumn.ApplyTop10Filter method

See Also