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

SubDocument.FormFields Property

Provides access to the collection of the document’s FormField objects.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

FormFieldCollection FormFields { get; }

Property Value

Type Description
FormFieldCollection

A FormFieldCollection object that is the document’s check box form fields collection.

Remarks

Use the FormFieldCollection.InsertCheckBox method to create a new CheckBox form field.

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