 | WorksheetAddNextCell(Cell, Boolean, Style) Method |
Method to insert a generic cell to the next cell position
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxprivate void AddNextCell(
Cell cell,
bool incremental,
Style style
)
Parameters
- cell Cell
- Cell object to insert
- incremental Boolean
- If true, the address value (row or column) will be incremented, otherwise not
- style Style
- If not null, the defined style will be applied to the cell, otherwise no style or the default style will be applied
ExceptionsException | Condition |
---|
StyleException | Throws a StyleException if the default style was malformed |
RemarksRecognized are the following data types: string, int, double, float, long, DateTime, TimeSpan, bool. All other types will be cast into a string using the default ToString() method.
If the cell object already has a style definition, and a style or active style is defined, the cell style will be merged, otherwise just set
See Also