Skip to main content

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

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
JavaObject
StructureElementAttribute
PrintFieldAttribute

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. null if the role is not specified.

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.