|  | WorksheetAddCellRangeInternalT Method | 
            Internal function to add a generic list of value to the defined cell range
            
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.7+3223c8b99fcd3402b4ae016daa480abac16f8a9f
 Syntax
Syntaxprivate void AddCellRangeInternal<T>(
	IReadOnlyList<T> values,
	Address startAddress,
	Address endAddress,
	Style style
)
Parameters
- values  IReadOnlyListT
- List of values
- startAddress  Address
- Start address
- endAddress  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
 Exceptions
Exceptions| Exception | Condition | 
|---|
| RangeException | Throws a RangeException if the number of cells differs from the number of passed values | 
 Remarks
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
See Also