PrintFieldAttribute Class
Attributes of a print field structure element in a PDF document.
Declaration
public class PrintFieldAttribute extends StructureElementAttribute
Remarks
The PrintFieldAttribute class defines additional information for print fields in a tagged PDF document. Use this class to specify the print field role, checked state, and description.
Refer to the following help topic for additional information: Generate and Edit Tagged PDF Documents.
Inherited Members
Inheritance
PrintFieldAttribute()
Initializes a new instance of the PrintFieldAttribute class.
Declaration
public PrintFieldAttribute()
Methods
getChecked() Method
Returns the checked state of the print field.
Declaration
public PrintFieldChecked getChecked()
Returns
| Type | Description |
|---|---|
| PrintFieldChecked | The checked state. |
getDesc() Method
Returns the print field description.
Declaration
public String getDesc()
Returns
| Type | Description |
|---|---|
| String | The print field description. |
getRole() Method
Returns the role of the print field.
Declaration
public @Nullable PrintFieldRole getRole()
Returns
| Type | Description |
|---|---|
| PrintFieldRole | The print field role. |
setChecked(PrintFieldChecked value) Method
Sets the checked state of the print field.
Declaration
public void setChecked(PrintFieldChecked value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | PrintFieldChecked | The checked state. |
setDesc(String value) Method
Sets the print field description.
Declaration
public void setDesc(String value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | String | The print field description. |
setRole(@Nullable PrintFieldRole value) Method
Sets the role of the print field.
Declaration
public void setRole(@Nullable PrintFieldRole value)
Parameters
| Name | Type | Description |
|---|---|---|
| value | PrintFieldRole | The print field role. |