Excel.Interfaces.WorksheetUpdateData interface
An interface for updating data on the Worksheet
object, for use in worksheet.set({ ... })
.
Properties
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. |
visibility | The visibility of the worksheet. |
Property Details
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
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. ]
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Office Add-ins