Skip to main content

FieldCollection Interface

Represents a collection of fields in the document.

Namespace: DevExpress.XtraRichEdit.API.Native

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

#Declaration

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

#Returned By

The SubDocument.Fields property returns an instance of FieldCollection.

#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