Skip to main content
A newer version of this page is available. .

FieldCollection Interface

Represents a collection of fields in the document.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

[ComVisible(true)]
public interface FieldCollection :
    ReadOnlyFieldCollection,
    ISimpleCollection<Field>,
    IEnumerable<Field>,
    IEnumerable,
    ICollection

The following members return FieldCollection objects:

Remarks

Use the SubDocument.Fields property to get access to the collection of all fields in the document. A new field in the document can be created via the FieldCollection.Add method, or using the CreateFieldCommand command.

See Also