officefileapi-devexpress-dot-spreadsheet-dot-top10type.md
Lists criteria types used in the top ten filter.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
public enum Top10Type
Public Enum Top10Type
| 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.
|
The following properties accept/return Top10Type values:
The Top10Type enumeration member is passed to the AutoFilterColumn.ApplyTop10Filter method. Subsequently, it is the value of the AutoFilterColumn.Top10Type property.
See Also