Initializes a new instance of the Top10Filter class with specified parameters.
Namespace:
Spire.Xls.Core.Spreadsheet.AutoFilter
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public Top10Filter(
	bool isTop,
	bool isPercent,
	int items,
	FilterColumn parentcol
)
 
Public Sub New ( 
	isTop As Boolean,
	isPercent As Boolean,
	items As Integer,
	parentcol As FilterColumn
)
 
public:
Top10Filter(
	bool isTop, 
	bool isPercent, 
	int items, 
	FilterColumn^ parentcol
)
 
new : 
isTop : bool * 
isPercent : bool * 
items : int * 
parentcol : FilterColumn -> Top10Filter
 
 
 
Parameters
- 
isTop
 
- 
Type:
System
Boolean
Indicates whether it's top filter.
 
- 
isPercent
 
- 
Type:
System
Boolean
Indicates whether the items is percent.
 
- 
items
 
- 
Type:
System
Int32
The items of filter.
 
- 
parentcol
 
- 
Type:
Spire.Xls.Core.Spreadsheet.AutoFilter
FilterColumn
The parent column to which this filter applies.
 
 
See Also