Excel.Interfaces.WorksheetData interface
An interface describing the data returned by calling worksheet.toJSON()
.
Properties
charts | Returns a collection of charts that are part of the worksheet. |
id | Returns a value that uniquely identifies the worksheet in a given workbook. The value of the identifier remains the same even when the worksheet is renamed or moved. |
name | The display name of the worksheet. The name must be fewer than 32 characters. |
position | The zero-based position of the worksheet within the workbook. |
protection | Returns the sheet protection object for a worksheet. |
tables | Collection of tables that are part of the worksheet. |
visibility | The visibility of the worksheet. |
Property Details
charts
Returns a collection of charts that are part of the worksheet.
charts?: Excel.Interfaces.ChartData[];
Property Value
Remarks
id
Returns a value that uniquely identifies the worksheet in a given workbook. The value of the identifier remains the same even when the worksheet is renamed or moved.
id?: string;
Property Value
string
Remarks
name
The display name of the worksheet. The name must be fewer than 32 characters.
name?: string;
Property Value
string
Remarks
position
The zero-based position of the worksheet within the workbook.
position?: number;
Property Value
number
Remarks
protection
Returns the sheet protection object for a worksheet.
protection?: Excel.Interfaces.WorksheetProtectionData;
Property Value
Remarks
tables
Collection of tables that are part of the worksheet.
tables?: Excel.Interfaces.TableData[];
Property Value
Remarks
visibility
The visibility of the worksheet.
visibility?: Excel.SheetVisibility | "Visible" | "Hidden" | "VeryHidden";
Property Value
Excel.SheetVisibility | "Visible" | "Hidden" | "VeryHidden"
Remarks
[ API set: ExcelApi 1.1 for reading visibility; 1.2 for setting it. ]
Office Add-ins