Click or drag to resize
PicoXLSX

WorksheetAddCellRange(IReadOnlyListObject, String, 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 casted to a String. Prepared objects of the type Cell will not be casted but adjusted

Namespace: PicoXLSX
Assembly: PicoXLSX (in PicoXLSX.dll) Version: 3.4.2+f55916d49ef2baa43fc7dc8f5c7d751a77c50baf
Syntax
C#
public void AddCellRange(
	IReadOnlyList<Object> values,
	string cellRange,
	Style style
)

Parameters

values  IReadOnlyListObject
List of unspecified objects to insert.
cellRange  String
Cell range as string in the format like A1:D1 or X10:X22.
style  Style
Style to apply on the all cells of the range.
See Also