New to Telerik Document ProcessingStart a free 30-day trial

Container for a document's interactive form (AcroForm) tied to a RadFixedDocument; manage fields, XFA, and viewer behavior.

Definition

Namespace:Telerik.Windows.Documents.Fixed.Model.InteractiveForms

Assembly:Telerik.Windows.Documents.Fixed.dll

Syntax:

C#
public class AcroForm

Inheritance: objectAcroForm

Methods

Flatten a single form field by painting its appearance and removing the widget.

C#
public void FlattenFormField(FormField field)
Parameters:fieldFormField

The Field to be flattened.

Flatten all fields by drawing their current appearances on pages and removing the interactive controls.

C#
public void FlattenFormFields()

Properties

The collection of all form fields defined in this document.

C#
public FormFieldCollection FormFields { get; }
Property Value:

The form field collection that provides access to all text boxes, check boxes, radio buttons, and other form elements.

Gets or sets document‑level flags that govern signature field behavior.

C#
public SignatureFlags SignatureFlags { get; set; }

Gets or sets whether PDF viewers should regenerate widget appearances from field properties instead of using stored appearances.

C#
public bool ViewersShouldRecalculateWidgetAppearances { get; set; }
Property Value:

True if viewers should recalculate appearances dynamically; false to use static pre-rendered appearances.

The XFA (XML Forms Architecture) collection attached to this form.

C#
public XfaCollection XfaForms { get; }