XlsWorksheet
CopyFrom Method
|
Note: This API is now obsolete.
Copies all data from another worksheet.
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 void CopyFrom(
XlsWorksheet worksheet,
Dictionary<string, string> hashStyleNames,
Dictionary<string, string> hashWorksheetNames,
Dictionary<int, int> dicFontIndexes,
WorksheetCopyType flags,
Dictionary<int, int> hashExtFormatIndexes,
Dictionary<int, int> hashNameIndexes,
Dictionary<int, int> hashExternSheets
)
<ObsoleteAttribute("the method is not implemented")>
Public Sub CopyFrom (
worksheet As XlsWorksheet,
hashStyleNames As Dictionary(Of String, String),
hashWorksheetNames As Dictionary(Of String, String),
dicFontIndexes As Dictionary(Of Integer, Integer),
flags As WorksheetCopyType,
hashExtFormatIndexes As Dictionary(Of Integer, Integer),
hashNameIndexes As Dictionary(Of Integer, Integer),
hashExternSheets As Dictionary(Of Integer, Integer)
)
public:
[ObsoleteAttribute(L"the method is not implemented")]
void CopyFrom(
XlsWorksheet^ worksheet,
Dictionary<String^, String^>^ hashStyleNames,
Dictionary<String^, String^>^ hashWorksheetNames,
Dictionary<int, int>^ dicFontIndexes,
WorksheetCopyType flags,
Dictionary<int, int>^ hashExtFormatIndexes,
Dictionary<int, int>^ hashNameIndexes,
Dictionary<int, int>^ hashExternSheets
)
[<ObsoleteAttribute("the method is not implemented")>]
member CopyFrom :
worksheet : XlsWorksheet *
hashStyleNames : Dictionary<string, string> *
hashWorksheetNames : Dictionary<string, string> *
dicFontIndexes : Dictionary<int, int> *
flags : WorksheetCopyType *
hashExtFormatIndexes : Dictionary<int, int> *
hashNameIndexes : Dictionary<int, int> *
hashExternSheets : Dictionary<int, int> -> unit
Parameters
-
worksheet
-
Type:
Spire.Xls.Core.Spreadsheet
XlsWorksheet
Parent worksheet.
-
hashStyleNames
-
Type:
System.Collections.Generic
Dictionary
String
,
String
HashTable with style names.
-
hashWorksheetNames
-
Type:
System.Collections.Generic
Dictionary
String
,
String
Hashtable with new worksheet names.
-
dicFontIndexes
-
Type:
System.Collections.Generic
Dictionary
Int32
,
Int32
Dictionary with new font indexes.
-
flags
-
Type:
Spire.Xls
WorksheetCopyType
Copy flags.
-
hashExtFormatIndexes
-
Type:
System.Collections.Generic
Dictionary
Int32
,
Int32
Hashtable with new extended format indexes.
-
hashNameIndexes
-
Type:
System.Collections.Generic
Dictionary
Int32
,
Int32
Hashtable with new name indexes.
-
hashExternSheets
-
Type:
System.Collections.Generic
Dictionary
Int32
,
Int32
Represents collection with extern sheets indexes.
See Also