Package | Description |
---|---|
com.aspose.pdf |
The
com.aspose.pdf is a root package for all classes of Aspose.PDF for Java library
which are either directly in it like Document or indirectly through several
subpackages. |
Modifier and Type | Class and Description |
---|---|
class |
BarcodeField
Class represents barcode field.
|
class |
ButtonField
Class represents push button field.
|
class |
CheckboxField
Class representing checkbox field
|
class |
ChoiceField
Represents base class for choice fields.
|
class |
ComboBoxField
Class representing Combobox field of the form.
|
class |
Field
Base class for acro form fields.
|
class |
FileSelectBoxField
Field for file select box element.
|
class |
ListBoxField
Class represents ListBox field.
|
class |
PasswordBoxField
Class descibes text field for entering password.
|
class |
RadioButtonField
Class representing radio button field.
|
class |
RadioButtonOptionField
Class represents item of RadioButton field.
|
class |
RichTextBoxField
Class describes rich text editor component.
|
class |
SignatureField
Represents signature form field.
|
class |
TextBoxField
Class representing text box field.
|
Modifier and Type | Method and Description |
---|---|
WidgetAnnotation |
Field.get_Item(int index)
Gets subfield contained in this field by index.
|
WidgetAnnotation |
Form.get_Item(int index)
Gets field of the form by field index.
|
WidgetAnnotation |
Field.get_Item(String name)
Gets subfield contained in this field by name of the subfield.
|
WidgetAnnotation |
Form.get_Item(String name)
Gets field of the form by field name.
|
WidgetAnnotation |
Form.get(int index) |
WidgetAnnotation |
Form.get(String name)
Searches field by field name.
|
Modifier and Type | Method and Description |
---|---|
Iterator<WidgetAnnotation> |
Field.iterator()
Returns enumerator of contained fields.
|
Iterator<WidgetAnnotation> |
Form.iterator()
Gets enumeration of form fields.
|
Modifier and Type | Method and Description |
---|---|
void |
Field.add(WidgetAnnotation item) |
boolean |
Form.add(WidgetAnnotation field)
Adds field on the form.
|
boolean |
Field.contains(WidgetAnnotation item) |
boolean |
Form.contains(WidgetAnnotation field)
Determines if field is presented on form..
|
void |
Field.copyTo(WidgetAnnotation[] array,
int arrayIndex) |
void |
Form.copyTo(WidgetAnnotation[] array,
int arrayIndex)
Copies form's fields to array.
|
boolean |
Field.remove(WidgetAnnotation item) |
boolean |
Form.remove(WidgetAnnotation field)
Deletes field from the form.
|
void |
AnnotationSelector.visit(WidgetAnnotation widget)
Select widget annotation if AnnotationSelector was initialized with WidgetAnnotation object.
|
void |
IAnnotationVisitor.visit(WidgetAnnotation widget)
Visit/select widget annotation.
|