aspnetcore-js-devexpress-dot-richedit-a273369b.md
Allows you to iterate over an image collection.
export class ImageIterator
The example below demonstrates how to change the wrapping type of every document image to Inline.
var imgIterator = richEdit.document.images.getIterator();
while(imgIterator.next())
imgIterator.image.changeWrapType(DevExpress.RichEdit.WrapType.Inline);
Returns an image that is marked as the current image in the iterator.
get image(): InlineImage | FloatingImage | null
| Type | Description |
|---|---|
| FloatingImage |
An object that contains settings of the current image (if the current image is a floating image). null if the iterator has no current image.
| | InlineImage |
An object that contains settings of the current image (if the current image is an inline image). null if the iterator has no current image.
|
The image property returns the null value in the following cases:
Sets the next image in the collection as the current image.
next(): boolean
| Type | Description |
|---|---|
| boolean |
true , if the next image exists; otherwise, false.
|