WorksheetViewModel

WorksheetViewModel

Overview

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

Represents a view model for a worksheet with display settings.

This class provides 14 methods for working with WorksheetViewModel objects in Java programs. Available methods include: getFreezeColumn, getFreezeRow, getRightToLeft, getShowGridLines, getShowRowColumnHeaders, getShowZeros, getZoomScale, setFreezeColumn, setFreezeRow, setRightToLeft, setShowGridLines, setShowRowColumnHeaders, and 2 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: freezeColumn, freezeRow, rightToLeft, showGridLines, showRowColumnHeaders, showZeros, and 1 more.

Properties

NameTypeAccessDescription
showGridLinesbooleanReadReturns the show grid lines.
showRowColumnHeadersbooleanReadReturns the show row column headers.
showZerosbooleanReadReturns the show zeros.
rightToLeftbooleanReadReturns the right to left.
zoomScaleintReadReturns the zoom scale.
freezeRowintReadReturns the number of rows frozen from the top (ySplit).
freezeColumnintReadReturns the number of columns frozen from the left (xSplit).

Methods

SignatureDescription
getShowGridLines()booleanReturns the show grid lines.
setShowGridLines(showGridLines: boolean)Sets the show grid lines.
getShowRowColumnHeaders()booleanReturns the show row column headers.
setShowRowColumnHeaders(showRowColumnHeaders: boolean)Sets the show row column headers.
getShowZeros()booleanReturns the show zeros.
setShowZeros(showZeros: boolean)Sets the show zeros.
getRightToLeft()booleanReturns the right to left.
setRightToLeft(rightToLeft: boolean)Sets the right to left.
getZoomScale()intReturns the zoom scale.
setZoomScale(zoomScale: int)Sets the zoom scale.
getFreezeRow()intReturns the number of rows frozen from the top (ySplit).
setFreezeRow(freezeRow: int)Sets the number of rows frozen from the top.
getFreezeColumn()intReturns the number of columns frozen from the left (xSplit).
setFreezeColumn(freezeColumn: int)Sets the number of columns frozen from the left.

See Also