|
ExcelReader Constructor (String, Boolean, Boolean)
|
Creates a new spreadsheet reader.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public ExcelReader(
string path,
bool hasHeaders,
bool hasMixedData
)
Public Sub New (
path As String,
hasHeaders As Boolean,
hasMixedData As Boolean
)
Request Example
View SourceParameters
- path
- Type: SystemString
The path of for the spreadsheet file. - hasHeaders
- Type: SystemBoolean
True if the spreadsheet contains headers, false otherwise. Default is true. - hasMixedData
- Type: SystemBoolean
True to read "intermixed" data columns as text, false otherwise. Default is true.
See Also