Package com.snowtide.pdf
Interface DocumentLocation
-
- All Superinterfaces:
Bounded
- All Known Subinterfaces:
AcroFormField
,Annotation
- All Known Implementing Classes:
AcroButtonField
,AcroCheckboxField
,AcroChoiceField
,AcroRadioButtonGroupField
,AcroSignatureField
,AcroTextField
,FileAttachmentAnnotation
,FreeTextAnnotation
,LinkAnnotation
,TextAnnotation
public interface DocumentLocation extends Bounded
Represents a unique location within aDocument
.- Since:
- v3.0
- Version:
- ©2004-2024 Snowtide
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
pageNumber()
This page number is 0-indexed, and may be used to retrieve aPage
object representing the page's content using theDocument.getPage(int)
function.
-
-
-
Method Detail
-
pageNumber
int pageNumber()
This page number is 0-indexed, and may be used to retrieve aPage
object representing the page's content using theDocument.getPage(int)
function.If a page number is not available for some reason, then this method will return -1.
-
-