Package | Description |
---|---|
com.groupdocs.parser.data |
The package provides classes which represent parsing results.
|
Modifier and Type | Class and Description |
---|---|
class |
PageGroupArea
Represents a group of page areas which is used to group different types of blocks of the document page in the parsing by template functionality.
|
class |
PageHyperlinkArea
Represents a page area which is used to represent a hyperlink on the page.
|
class |
PageImageArea
Represents a page image area which is used to represent an image on the page in the parsing by template functionality
or an image attachment if images are extracted from emails or Zip archives.
|
class |
PageTableArea
Represents a table page area which is used to represent a table in the parsing by template functionality.
|
class |
PageTextArea
Represents a page text area which is used to represent a text value in the parsing by template or parsing form functionality.
|
Modifier and Type | Method and Description |
---|---|
PageArea |
FieldData.getPageArea()
Gets the value of the field.
|
PageArea |
PageTableAreaCell.getPageArea()
Gets the table cell value.
|
Modifier and Type | Method and Description |
---|---|
Iterable<PageArea> |
PageGroupArea.getAreas()
Gets the collection of grouped page areas.
|
Constructor and Description |
---|
FieldData(String name,
PageArea pageArea)
Initializes a new instance of the
FieldData class. |
FieldData(String name,
PageArea pageArea,
FieldData linkedField)
Initializes a new instance of the
FieldData class. |
PageTableAreaCell(int rowIndex,
int columnIndex,
PageArea pageArea)
Initializes a new instance of the
PageTableAreaCell class. |
PageTableAreaCell(int rowIndex,
int columnIndex,
PageArea pageArea,
int rowSpan,
int columnSpan)
Initializes a new instance of the
PageTableAreaCell class. |
Constructor and Description |
---|
PageGroupArea(Iterable<PageArea> areas,
Page page)
Initializes a new instance of the
PageGroupArea class. |