Gets CellRangeInfo from a range of worksheet.

Namespace: Spire.Spreadsheet.Forms
Assembly: Spire.Spreadsheet (in Spire.Spreadsheet.dll) Version: 3.7.1.8020

Syntax

            
 C#  Visual Basic  Visual C++  F# 
CellRangeInfo FromRange(
	string startCellRange,
	string endCellRange
)
Function FromRange ( 
	startCellRange As String,
	endCellRange As String
) As CellRangeInfo
CellRangeInfo^ FromRange(
	String^ startCellRange, 
	String^ endCellRange
)
abstract FromRange : 
        startCellRange : string * 
        endCellRange : string -> CellRangeInfo 

Parameters

startCellRange
String
Start cell range.
endCellRange
String
End cell range.

Return Value

CellRangeInfo
A CellRange object.

See Also