ExcelAI
ExcelMerge Method
|
Merges the data from multiple range into a destination range using AI.
Limited by the reasoning ability of AI, the processing results of irregular data may not be ideal.
The amount of data processed is alos limited
Namespace:
Spire.Xls.AI
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public string ExcelMerge(
CellRange descRange,
List<CellRange> srcRanges,
CellRange titleRange
)
Public Function ExcelMerge (
descRange As CellRange,
srcRanges As List(Of CellRange),
titleRange As CellRange
) As String
public:
String^ ExcelMerge(
CellRange^ descRange,
List<CellRange^>^ srcRanges,
CellRange^ titleRange
)
member ExcelMerge :
descRange : CellRange *
srcRanges : List<CellRange> *
titleRange : CellRange -> string
Parameters
-
descRange
-
Type:
Spire.Xls
CellRange
The destination range.
-
srcRanges
-
Type:
System.Collections.Generic
List
CellRange
The ranges containing the data to merge.
-
titleRange
-
Type:
Spire.Xls
CellRange
The range containing the title.
Return Value
Type:
String
a string indicating whether the processing was successful or not.
See Also