Skip to main content
A newer version of this page is available. .
.NET Standard 2.0+

FormFieldCollection Interface

The collection of FormField objects.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

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

Remarks

Access the FormFieldCollection collection using the SubDocument.FormFields property.

Example

The following code sample shows how to create a checkbox on a caret’s position:

Dim currentPosition As DocumentPosition = document.CaretPosition
Dim checkBox As DevExpress.XtraRichEdit.API.Native.CheckBox = 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