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

RichEditSelection.intervals Property

Gets or sets an array of document intervals in the selection.

Declaration

intervals: Interval[]

Property Value

Type Description
Interval[]

An array of Interval objects.

Remarks

//Inserts a picture at a certain position
richEdit.selection.intervals = [{ start: position, length: 0 }];
richEdit.commands.insertPicture.execute(image);
See Also