Represents the different ways to identify multiple ranges within a sheet.
Accepts:
ICellRanges
string
ICellRange.Address
const address1: ICellRanges.Address = "A1:B2,C3:D4"; // String with multiple ranges. Copy
const address1: ICellRanges.Address = "A1:B2,C3:D4"; // String with multiple ranges.
This extends ICellRange.Address to support multiple values.
Represents the different ways to identify multiple ranges within a sheet.
Accepts:
ICellRanges
string
containing multiple range addresses separated by commas (e.g., "A1:B2,C3:D4").ICellRange.Address
objects, each representing a single range.