Click or drag to resize
PicoXLSX

WorksheetAddCellRange(IReadOnlyListObject, CellAddress, CellAddress, 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,
	CellAddress startAddress,
	CellAddress endAddress,
	Style style
)

Parameters

values  IReadOnlyListObject
List of unspecified objects to insert.
startAddress  CellAddress
Start address.
endAddress  CellAddress
End address.
style  Style
Style to apply on the all cells of the range.
See Also