XlsPivotCache
Clone Method (Object, Dictionary
String, String
)
 | 
Creates a clone of the current object with a new parent and a dictionary of new names for worksheets.
Namespace:
Spire.Xls.Core.Spreadsheet.PivotTables
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
 
public Object Clone(
	Object parent,
	Dictionary<string, string> hashNewNames
)
 
Public Function Clone ( 
	parent As Object,
	hashNewNames As Dictionary(Of String, String)
) As Object
 
public:
Object^ Clone(
	Object^ parent, 
	Dictionary<String^, String^>^ hashNewNames
)
 
member Clone : 
parent : Object * 
hashNewNames : Dictionary<string, string> -> Object 
 
 
 
Parameters
- 
parent
 
- 
Type:
System
Object
The new parent object for the cloned object.
 
- 
hashNewNames
 
- 
Type:
System.Collections.Generic
Dictionary
String
,
String
A dictionary containing new names for worksheets.
 
Return Value
Type:
Object
A new object that is a clone of the current object with the specified parent and new worksheet names.
 
See Also