IGoExcelCellValues Property (String, String, String, String) |
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: 23.0
Syntax Property CellValues (
fileName As String,
sheetName As String,
startCellAddress As String,
endCellAddress As String
) As IList
Get
Set
IList this[
string fileName,
string sheetName,
string startCellAddress,
string endCellAddress
] { get; set; }
Parameters
- fileName
- Type: SystemString
The relative or absolute filename of the Excel workbook. (Relative paths are recommended.) - sheetName
- Type: SystemString
The name of the worksheet. - startCellAddress
- Type: SystemString
The starting cell address (e.g. "A1"). This cell will be included in the result. - endCellAddress
- Type: SystemString
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