Method | Description | |
---|---|---|
ExcelReader ( Stream stream, bool xlsx ) : System |
Creates a new spreadsheet reader.
|
|
ExcelReader ( Stream stream, bool xlsx, bool hasHeaders ) : System |
Creates a new spreadsheet reader.
|
|
ExcelReader ( Stream stream, bool xlsx, bool hasHeaders, bool hasMixedData ) : System |
Creates a new spreadsheet reader.
|
|
ExcelReader ( string path ) : System |
Creates a new spreadsheet reader.
|
|
ExcelReader ( string path, bool hasHeaders ) : System |
Creates a new spreadsheet reader.
|
|
ExcelReader ( string path, bool hasHeaders, bool hasMixedData ) : System |
Creates a new spreadsheet reader.
|
|
GetColumnsList ( string worksheet ) : string[] |
Gets the list of columns in a worksheet.
|
|
GetWorksheet ( ) : |
Gets the entire worksheet as a data set.
|
|
GetWorksheet ( int worksheetIndex ) : |
Gets an worksheet as a data table.
|
|
GetWorksheet ( string worksheet ) : |
Gets an worksheet as a data table.
|
|
GetWorksheetList ( ) : string[] |
Gets the list of worksheets in the spreadsheet.
|
Method | Description | |
---|---|---|
initialize ( string path, bool hasHeaders, bool hasMixedData ) : void |
public ExcelReader ( Stream stream, bool xlsx ) : System | ||
stream | Stream | The stream containing the spreadsheet file. |
xlsx | bool | True if the file should be treated as .xlsx file, false otherwise. Default is true. |
return | System |
public ExcelReader ( Stream stream, bool xlsx, bool hasHeaders ) : System | ||
stream | Stream | The stream containing the spreadsheet file. |
xlsx | bool | True if the file should be treated as .xlsx file, false otherwise. Default is true. |
hasHeaders | bool | True if the spreadsheet contains headers, false otherwise. Default is true. |
return | System |
public ExcelReader ( Stream stream, bool xlsx, bool hasHeaders, bool hasMixedData ) : System | ||
stream | Stream | The stream containing the spreadsheet file. |
xlsx | bool | True if the file should be treated as .xlsx file, false otherwise. Default is true. |
hasHeaders | bool | True if the spreadsheet contains headers, false otherwise. Default is true. |
hasMixedData | bool | True to read "intermixed" data columns as text, false otherwise. Default is true. |
return | System |
public ExcelReader ( string path ) : System | ||
path | string | The path of for the spreadsheet file. |
return | System |
public ExcelReader ( string path, bool hasHeaders ) : System | ||
path | string | The path of for the spreadsheet file. |
hasHeaders | bool | True if the spreadsheet contains headers, false otherwise. Default is true. |
return | System |
public ExcelReader ( string path, bool hasHeaders, bool hasMixedData ) : System | ||
path | string | The path of for the spreadsheet file. |
hasHeaders | bool | True if the spreadsheet contains headers, false otherwise. Default is true. |
hasMixedData | bool | True to read "intermixed" data columns as text, false otherwise. Default is true. |
return | System |
public GetColumnsList ( string worksheet ) : string[] | ||
worksheet | string | |
return | string[] |
public GetWorksheet ( int worksheetIndex ) : |
||
worksheetIndex | int | |
return |
public GetWorksheet ( string worksheet ) : |
||
worksheet | string | |
return |