WorkbookView

Overview

WorkbookView is a class in Aspose.Cells FOSS for Java.

Represents the view / window settings stored in <bookViews>.

This class provides 26 methods for working with WorkbookView objects in Java programs. Available methods include: getActiveTab, getFirstSheet, getTabRatio, getVisibility, getWindowHeight, getWindowWidth, getXWindow, getYWindow, isAutoFilterDateGrouping, isMinimized, isShowHorizontalScroll, isShowSheetTabs, and 14 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: activeTab, autoFilterDateGrouping, firstSheet, minimized, showHorizontalScroll, showSheetTabs, and 7 more.

Properties

NameTypeAccessDescription
activeTabintReadZero-based index of the active worksheet (maps to bookView activeTab attribute).
xWindowIntegerReadGets the x window.
yWindowIntegerReadGets the y window.
windowWidthIntegerReadGets the window width.
windowHeightIntegerReadGets the window height.
firstSheetIntegerReadGets the first sheet.
showHorizontalScrollBooleanReadGets the show horizontal scroll.
showVerticalScrollBooleanReadGets the show vertical scroll.
showSheetTabsBooleanReadGets the show sheet tabs.
tabRatioIntegerReadGets the tab ratio.
visibilityStringReadGets the visibility.
minimizedbooleanReadGets the minimized.
autoFilterDateGroupingbooleanReadGets the auto filter date grouping.

Methods

SignatureDescription
getActiveTab()intZero-based index of the active worksheet (maps to bookView activeTab attribute).
setActiveTab(v: int)Sets the active tab value.
getXWindow()IntegerReturns the x window.
setXWindow(v: Integer)Sets the x window value.
getYWindow()IntegerReturns the y window.
setYWindow(v: Integer)Sets the y window value.
getWindowWidth()IntegerReturns the window width.
setWindowWidth(v: Integer)Sets the window width value.
getWindowHeight()IntegerReturns the window height.
setWindowHeight(v: Integer)Sets the window height value.
getFirstSheet()IntegerReturns the first sheet.
setFirstSheet(v: Integer)Sets the first sheet value.
isShowHorizontalScroll()BooleanReturns true if show horizontal scroll is set.
setShowHorizontalScroll(v: Boolean)Sets the show horizontal scroll value.
isShowVerticalScroll()BooleanReturns true if show vertical scroll is set.
setShowVerticalScroll(v: Boolean)Sets the show vertical scroll value.
isShowSheetTabs()BooleanReturns true if show sheet tabs is set.
setShowSheetTabs(v: Boolean)Sets the show sheet tabs value.
getTabRatio()IntegerReturns the tab ratio.
setTabRatio(v: Integer)Sets the tab ratio value.
getVisibility()StringReturns the visibility.
setVisibility(v: String)Sets the visibility value.
isMinimized()booleanReturns true if minimized is set.
setMinimized(v: boolean)Sets the minimized value.
isAutoFilterDateGrouping()booleanReturns true if auto filter date grouping is set.
setAutoFilterDateGrouping(v: boolean)Sets the auto filter date grouping value.

See Also