 | WorksheetAddCellRange(IReadOnlyListObject, Address, Address, Style) Method |
Adds a list of object values to a defined cell range. If the type of the a particular value does not match with one of the supported data types, it will be cast to a String.
Prepared objects of the type Cell will not be cast but adjusted
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxpublic void AddCellRange(
IReadOnlyList<Object> values,
Address startAddress,
Address endAddress,
Style style
)
Parameters
- values IReadOnlyListObject
- List of unspecified objects to insert
- startAddress Address
- Start address
- endAddress Address
- End address
- style Style
- Style to apply on the all cells of the range
ExceptionsException | Condition |
---|
RangeException | Throws a RangeException if the number of cells resolved from the range differs from the number of passed values |
StyleException | Throws a StyleException if the passed style is malformed |
RemarksThe data types in the passed list can be mixed. Recognized are the following data types: Cell (prepared object), string, int, double, float, long, DateTime, TimeSpan, bool.
All other types will be cast into a string using the default ToString() method
See Also