![]() |
NanoXLSX.Reader 3.0.0-rc.2
|
Class representing a reader for the shared strings table of XLSX files. More...
Public Member Functions | |
| SharedStringsReader () | |
| 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 | |
| List< string > | SharedStrings [get] |
| List of shared string entries. | |
| Workbook | Workbook [get, set] |
| Workbook reference where read data is stored (should not be null). | |
Class representing a reader for the shared strings table of XLSX files.
Definition at line 25 of file SharedStringsReader.cs.
| NanoXLSX.Internal.Readers.SharedStringsReader.SharedStringsReader | ( | ) |
Default constructor - Must be defined for instantiation of the plug-ins.
Definition at line 55 of file SharedStringsReader.cs.
| void NanoXLSX.Internal.Readers.SharedStringsReader.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 83 of file SharedStringsReader.cs.
| void NanoXLSX.Internal.Readers.SharedStringsReader.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 69 of file SharedStringsReader.cs.
|
get |
List of shared string entries.
String entry, sorted by its internal index of the table
Definition at line 43 of file SharedStringsReader.cs.
|
getset |
Workbook reference where read data is stored (should not be null).
Definition at line 48 of file SharedStringsReader.cs.