XlsName
Clone Method (Object, Dictionary
String, String
, XlsWorkbook)
|
Note: This API is now obsolete.
Creates a clone of the current IXLSRange object.
Namespace:
Spire.Xls.Core.Spreadsheet
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
[ObsoleteAttribute("the method is not implemented")]
public IXLSRange Clone(
Object parent,
Dictionary<string, string> hashNewNames,
XlsWorkbook book
)
<ObsoleteAttribute("the method is not implemented")>
Public Function Clone (
parent As Object,
hashNewNames As Dictionary(Of String, String),
book As XlsWorkbook
) As IXLSRange
public:
[ObsoleteAttribute(L"the method is not implemented")]
IXLSRange^ Clone(
Object^ parent,
Dictionary<String^, String^>^ hashNewNames,
XlsWorkbook^ book
)
[<ObsoleteAttribute("the method is not implemented")>]
member Clone :
parent : Object *
hashNewNames : Dictionary<string, string> *
book : XlsWorkbook -> IXLSRange
Parameters
-
parent
-
Type:
System
Object
The parent object to which the cloned range will belong.
-
hashNewNames
-
Type:
System.Collections.Generic
Dictionary
String
,
String
A dictionary containing new names for the cloned range.
-
book
-
Type:
Spire.Xls.Core.Spreadsheet
XlsWorkbook
The workbook in which the cloned range will reside.
Return Value
Type:
IXLSRange
A new IXLSRange object that is a clone of the current instance.
See Also