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

DocumentImageCollection Interface

Defines a collection of document images.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

[ComVisible(true)]
public interface DocumentImageCollection :
    ReadOnlyDocumentImageCollection,
    ISimpleCollection<DocumentImage>,
    IEnumerable<DocumentImage>,
    IEnumerable,
    ICollection

The following members return DocumentImageCollection objects:

Remarks

The DocumentImageCollection object holds all document images. To access this collection, use the SubDocument.Images property. To get a collection of images located in the specified document range, call the ReadOnlyDocumentImageCollection.Get method of the DocumentImageCollection object.

To place an image in the document, use the DocumentImageCollection.Insert or DocumentImageCollection.Append method.

Example

This sample code inserts a Image object into the document. The image is obtained from the ImageCollection control.

Imports DevExpress.XtraRichEdit
Imports DevExpress.XtraRichEdit.API.Native
' ...
Dim pos As DocumentPosition = richEditControl1.Document.CaretPosition
Dim imageToInsert As Image = imageCollection1.Images(3)
richEditControl1.Document.Images.Insert(pos, imageToInsert)
See Also