Package adalid.core.interfaces
Interface PageFormat
-
- All Known Implementing Classes:
AbstractPageFormat,DefaultPageFormat,LandscapeA4,LandscapeB5,LandscapeLegal,LandscapeLetter,Ledger,PortraitA4,PortraitB5,PortraitLegal,PortraitLetter,Tabloid
public interface PageFormat- Author:
- Jorge Campins
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description intgetBottomMargin()intgetColumnWidth()intgetLeftMargin()intgetPageHeight()intgetPageWidth()java.lang.StringgetPaperSize()intgetRightMargin()intgetTopMargin()booleanisLandscapeOrientation()booleanisPortraitOrientation()default intordinal()
-
-
-
Method Detail
-
ordinal
default int ordinal()
-
getPaperSize
java.lang.String getPaperSize()
-
isLandscapeOrientation
boolean isLandscapeOrientation()
-
isPortraitOrientation
boolean isPortraitOrientation()
-
getColumnWidth
int getColumnWidth()
-
getPageWidth
int getPageWidth()
-
getPageHeight
int getPageHeight()
-
getTopMargin
int getTopMargin()
-
getBottomMargin
int getBottomMargin()
-
getLeftMargin
int getLeftMargin()
-
getRightMargin
int getRightMargin()
-
-