|
ExcelReader Constructor (Stream, Boolean, Boolean, Boolean)
|
Creates a new spreadsheet reader.
Namespace:
Accord.IO
Assembly:
Accord.IO (in Accord.IO.dll) Version: 3.8.0
Syntax public ExcelReader(
Stream stream,
bool xlsx,
bool hasHeaders,
bool hasMixedData
)
Public Sub New (
stream As Stream,
xlsx As Boolean,
hasHeaders As Boolean,
hasMixedData As Boolean
)
Request Example
View SourceParameters
- stream
- Type: System.IOStream
The stream containing the spreadsheet file. - xlsx
- Type: SystemBoolean
True if the file should be treated as .xlsx file, false otherwise. Default is true. - 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