Click or drag to resize
PicoXLSX

Worksheet.AddCellRangeInternal<T> Method

Internal function to add a generic list of value to the defined cell range

Namespace: PicoXLSX
Assembly: PicoXLSX (in PicoXLSX.dll) Version: 3.4.2+f55916d49ef2baa43fc7dc8f5c7d751a77c50baf
Syntax
C#
private void AddCellRangeInternal<T>(
	IReadOnlyList<T> values,
	Cell.Address startAddress,
	Cell.Address endAddress,
	Style style
)

Parameters

values  IReadOnlyList<T>
List of values.
startAddress  Cell.Address
Start address.
endAddress  Cell.Address
End address.
style  Style
Style to apply on the all cells of the range.

Type Parameters

T
Data type of the generic value list.
See Also