|  | WorksheetAddCellRange(IReadOnlyListObject, String) 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.7+3223c8b99fcd3402b4ae016daa480abac16f8a9f
 Syntax
Syntaxpublic void AddCellRange(
	IReadOnlyList<Object> values,
	string cellRange
)
Parameters
- values  IReadOnlyListObject
- List of unspecified objects to insert
- cellRange  String
- Cell range as string in the format like A1:D1 or X10:X22
 Exceptions
Exceptions| Exception | Condition | 
|---|
| RangeException | Throws a RangeException if the number of cells resolved from the range differs from the number of passed values | 
| FormatException | Throws a FormatException if the passed cell range is malformed | 
 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