Gets or sets the values of a range of cells from a single column or row.
Namespace:
Autodesk.iLogic.Interfaces
Assembly:
Autodesk.iLogic.Interfaces (in Autodesk.iLogic.Interfaces.dll) Version: 25.0
Syntax
VB
Property CellValues (
fileName As String,
sheetName As String,
startCellAddress As String,
endCellAddress As String
) As IList
Get
Set
C#
IList this[
string fileName,
string sheetName,
string startCellAddress,
string endCellAddress
] { get; set; }
Parameters
- fileName
- Type: System.String
The relative or absolute filename of the Excel workbook. (Relative paths are recommended.) - sheetName
- Type: System.String
The name of the worksheet. - startCellAddress
- Type: System.String
The starting cell address (e.g. "A1"). This cell will be included in the result. - endCellAddress
- Type: System.String
The ending cell address (e.g. "A5"). This cell will be included in the result.
Property Value
Type:
IListA list of cell values. Values may be numeric, text strings, Boolean values, or Nothing).
See Also
Reference