Gets or sets a value indicating whether to submit form's incremental updates. Meaningful only when the form is being submitted in Forms Data Format. If set, the submitted FDF file includes the contents of all incremental updates to the underlying PDF document. If clear, the incremental updates are not included.

Namespace: Spire.Pdf.Actions
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public bool IncludeIncrementalUpdates { get; set; }
Public Property IncludeIncrementalUpdates As Boolean
	Get
	Set
public:
property bool IncludeIncrementalUpdates {
	bool get ();
	void set (bool value);
}
member IncludeIncrementalUpdates : bool with get, set

Property Value

Boolean
true if incremental updates should be submitted; otherwise, false.

See Also