PivotReportFilters
Remove Method
 | 
Removes the first occurrence of a specific object from the PivotReportFilter collection.
Namespace:
Spire.Xls.Core.Spreadsheet.PivotTables
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public bool Remove(
	PivotReportFilter item
)
 
Public Function Remove ( 
	item As PivotReportFilter
) As Boolean
 
public:
bool Remove(
	PivotReportFilter^ item
)
 
member Remove : 
item : PivotReportFilter -> bool 
 
 
 
Parameters
- 
item
 
- 
Type:
Spire.Xls.Core.Spreadsheet.PivotTables
PivotReportFilter
The PivotReportFilter object to remove from the collection.
 
Return Value
Type:
Boolean
true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the collection.
 
See Also