IInterval Interface
Defines settings for a text interval.
#Declaration
export interface IInterval
#Remarks
The IInterval interface is a structure that holds information about a text interval.
var intervalA = new DevExpress.RichEdit.Interval(0, 1);
var intervalB = { start: 0, length: 1};
#Properties
#length Property
Specifies the number of character positions in the interval.
#Declaration
length: number
#Property Value
Type | Description |
---|---|
number | The interval length. |
#start Property
Specifies the interval’s start position in the document.
#Declaration
start: number
#Property Value
Type | Description |
---|---|
number | The start position. |