Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

FormFieldCollection Interface

The collection of FormField objects.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v20.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

Declaration

public interface FormFieldCollection :
    ReadOnlyFormFieldCollection,
    ISimpleCollection<FormField>,
    IEnumerable<FormField>,
    IEnumerable,
    ICollection

Remarks

A FormField object represents a form field’s result.

Access the FormFieldCollection collection using the SubDocument.FormFields property.

Example

DocumentPosition currentPosition = server.Document.Range.Start;
DevExpress.XtraRichEdit.API.Native.CheckBox checkBox = server.Document.FormFields.InsertCheckBox(currentPosition);
checkBox.Name = "check1";
checkBox.State = CheckBoxState.Checked;
checkBox.SizeMode = CheckBoxSizeMode.Auto;
checkBox.HelpTextType = FormFieldTextType.Custom;
checkBox.HelpText = "help text";
See Also