-
Methods in com.ebasetech.xi.api that return Page
Modifier and Type |
Method |
Description |
Page |
WebForm.getAbortPage() |
Returns the current page after a failure has occurred, or null if no failure has occurred or there is no current page.
|
Page[] |
WebForm.getAllPages() |
Returns an array of Page objects containing all pages within the form.
|
Page |
WebForm.getCurrentPage() |
Returns a Page object representing the current page
|
Page |
WebForm.getFirstPage() |
Returns the Page object configured as the form's first page.
|
Page |
Page.getNextPage() |
Returns the Page object for the next page or null if no next page exists.
|
Page |
WebForm.getNextPage() |
Returns a Page object representing the next page or null if no next page is configured.
|
Page |
Pages.getPage(java.lang.String pageName) |
Returns the Page with name pageName .
|
Page[] |
PdfOptions.getPages() |
Returns the pages to be printed.
|
Page |
Page.getPreviousPage() |
Returns the Page object for the previous page displayed to the user.
|
Page |
WebForm.getPreviousPage() |
Returns a Page object representing the previous page displayed or null if there is no previous page.
|
Methods in com.ebasetech.xi.api with parameters of type Page
Modifier and Type |
Method |
Description |
FieldColumnControl |
WebFormTableColumn.getColumnControl(Page page) |
Returns the first Table Column Control on the specified page that displays this column.
|
Control |
WebFormTable.getControl(Page page) |
Returns the first Table Control or Repeater Control on the specified page that displays this table.
|
FieldControl |
WebFormField.getFieldControl(Page page) |
Returns the first Field Control on the specified page that displays this field.
|
FieldControl |
WebFormTableColumn.getFieldControl(Page page) |
Returns the first Table Column Control on the specified page that displays this column.
|
void |
WebForm.gotoPage(Page page) |
Goes immediately to the specified page and terminates the event currently being executed; no statements past this method call will be executed.
|
void |
WebForm.setNextPage(Page page) |
Sets the next page to be displayed when the user navigates forwards using a next page button.
|
void |
PdfOptions.setPages(Page[] pages) |
Sets the pages to be included in the PDF.
|
-