PivotDataFields
Remove Method
 | 
Removes the first occurrence of a specific object from the PivotDataField 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(
	PivotDataField item
)
 
Public Function Remove ( 
	item As PivotDataField
) As Boolean
 
public:
bool Remove(
	PivotDataField^ item
)
 
member Remove : 
item : PivotDataField -> bool 
 
 
 
Parameters
- 
item
 
- 
Type:
Spire.Xls.Core.Spreadsheet.PivotTables
PivotDataField
The PivotDataField object to remove from the collection.
 
Return Value
Type:
Boolean
true if item was successfully removed from the collection; otherwise, false.
 
See Also