public static final class

OfficeToPDFOptions.UpdateDynamicFields

extends Object
java.lang.Object
   ↳ com.pdftron.pdf.OfficeToPDFOptions.UpdateDynamicFields

Class Overview

Dynamic fields to be updated within the document. Enum values can be bitwise OR-ed to define a specific combination of fields to be updated.

Summary

Constants
int e_update_all Updates all dynamic fields within the document.
int e_update_doc_props Updates document property fields within the document.
int e_update_none Default value.
Public Constructors
UpdateDynamicFields()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int e_update_all

Updates all dynamic fields within the document.

Constant Value: -1 (0xffffffff)

public static final int e_update_doc_props

Updates document property fields within the document.

Constant Value: 1 (0x00000001)

public static final int e_update_none

Default value. Does not update dynamic fields within the document.

Constant Value: 0 (0x00000000)

Public Constructors

public UpdateDynamicFields ()