PageMarginsModel

PageMarginsModel

Overview

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

Represents page margins for a worksheet in an Excel file.

This class provides 12 methods for working with PageMarginsModel objects in Java programs. Available methods include: getBottom, getFooter, getHeader, getLeft, getRight, getTop, setBottom, setFooter, setHeader, setLeft, setRight, setTop. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: bottom, footer, header, left, right, top.

Properties

NameTypeAccessDescription
leftdoubleReadReturns the left.
rightdoubleReadReturns the right.
topdoubleReadReturns the top.
bottomdoubleReadReturns the bottom.
headerdoubleReadReturns the header.
footerdoubleReadReturns the footer.

Methods

SignatureDescription
getLeft()doubleReturns the left.
setLeft(left: double)Sets the left.
getRight()doubleReturns the right.
setRight(right: double)Sets the right.
getTop()doubleReturns the top.
setTop(top: double)Sets the top.
getBottom()doubleReturns the bottom.
setBottom(bottom: double)Sets the bottom.
getHeader()doubleReturns the header.
setHeader(header: double)Sets the header.
getFooter()doubleReturns the footer.
setFooter(footer: double)Sets the footer.

See Also