![]() |
NanoXLSX.Reader 3.0.0-rc.2
|
Class representing a reader for worksheets of XLSX files. More...
Public Member Functions | |
| WorksheetReader () | |
| Default constructor - Must be defined for instantiation of the plug-ins. | |
| void | Init (MemoryStream stream, Workbook workbook, IOptions readerOptions) |
| Initialization method (interface implementation). | |
| void | Execute () |
| Method to execute the main logic of the plug-in (interface implementation). | |
Properties | |
| Workbook | Workbook [get, set] |
| Workbook reference where read data is stored (should not be null). | |
| int | CurrentWorksheetID [get, set] |
| Gets or sets the (r)ID of the current worksheet. | |
| List< String > | SharedStrings [get, set] |
| Gets or Sets the list of the shared strings. The index of the list corresponds to the index, defined in cell values. | |
Class representing a reader for worksheets of XLSX files.
Definition at line 28 of file WorksheetReader.cs.
| NanoXLSX.Internal.Readers.WorksheetReader.WorksheetReader | ( | ) |
Default constructor - Must be defined for instantiation of the plug-ins.
Definition at line 60 of file WorksheetReader.cs.
| void NanoXLSX.Internal.Readers.WorksheetReader.Execute | ( | ) |
Method to execute the main logic of the plug-in (interface implementation).
| Exceptions.IOException | Throws an IOException in case of a error during reading |
Definition at line 93 of file WorksheetReader.cs.
| void NanoXLSX.Internal.Readers.WorksheetReader.Init | ( | MemoryStream | stream, |
| Workbook | workbook, | ||
| IOptions | readerOptions ) |
Initialization method (interface implementation).
| stream | MemoryStream to be read |
| workbook | Workbook reference |
| readerOptions | Reader options |
Definition at line 72 of file WorksheetReader.cs.
|
getset |
Gets or sets the (r)ID of the current worksheet.
Definition at line 48 of file WorksheetReader.cs.
|
getset |
Gets or Sets the list of the shared strings. The index of the list corresponds to the index, defined in cell values.
Definition at line 53 of file WorksheetReader.cs.
|
getset |
Workbook reference where read data is stored (should not be null).
Definition at line 44 of file WorksheetReader.cs.