Excel.Interfaces.WorkbookRangeAreasData interface
An interface describing the data returned by calling workbookRangeAreas.toJSON()
.
Properties
addresses | Returns an array of addresses in A1-style. Address values contain the worksheet name for each rectangular block of cells (e.g., "Sheet1!A1:B4, Sheet1!D1:D4"). Read-only. |
areas | Returns the |
ranges | Returns ranges that comprise this object in a |
Property Details
addresses
Returns an array of addresses in A1-style. Address values contain the worksheet name for each rectangular block of cells (e.g., "Sheet1!A1:B4, Sheet1!D1:D4"). Read-only.
addresses?: string[];
Property Value
string[]
Remarks
areas
Returns the RangeAreasCollection
object. Each RangeAreas
in the collection represent one or more rectangle ranges in one worksheet.
areas?: Excel.Interfaces.RangeAreasData[];
Property Value
Remarks
ranges
Returns ranges that comprise this object in a RangeCollection
object.
ranges?: Excel.Interfaces.RangeData[];
Property Value
Remarks
Office Add-ins