[]
Serializable, Comparable<PaginationOrientation>, ConstableUse this enum with PrintManager.GetPaginationInfo(IWorksheet,PaginationOrientation) to choose whether page boundaries are returned as column indexes for horizontal paging or row indexes for vertical paging. Pagination is based on the current worksheet page setup.
worksheet.getRange("A1:C6").setValue(new Object[][] {
{"Name", "Q1", "Q2"},
{"North", 100, 120},
{"South", 90, 110}
});
PrintManager printManager = new PrintManager();
Object pageBreaks = printManager.GetPaginationInfo(worksheet, PaginationOrientation.Horizontal);
Enum.EnumDesc<E extends Enum<E>>static PaginationOrientationforValue(int value) intgetValue()static PaginationOrientationstatic PaginationOrientation[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null