WorkbookSettingsShowTabs Property |
Get or sets a value whether the Workbook tabs are displayed.
Namespace:
Aspose.Cells
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 22.5.0.0 (22.5.0)
Syntaxpublic bool ShowTabs { get; set; }
Public Property ShowTabs As Boolean
Get
Set
public:
property bool ShowTabs {
bool get ();
void set (bool value);
}
member ShowTabs : bool with get, set
Property Value
Type:
Boolean
RemarksThe default value is true.
ExamplesThe following code hides the Sheet Tabs and Tab Scrolling Buttons for the spreadsheet.
workbook.Settings.ShowTabs = false;
[Visual Basic]
' Hide the spreadsheet tabs.
workbook.Settings.ShowTabs = False
See Also