aspnetcore-js-devexpress-dot-richedit-3d8e9591.md
Contains settings for a text interval.
export class Interval implements IInterval
var interval = new DevExpress.RichEdit.Interval(0, 1);
IInterval
Creates a new instance of the Interval class.
constructor(
start: number,
length: number
)
| Name | Type | Description |
|---|---|---|
| start | number |
The interval’s start position.
| | length | number |
The interval length.
|
new DevExpress.RichEdit.Interval(10, 20);
Gets the interval’s end position in the document.
get end(): number
| Type | Description |
|---|---|
| number |
The end position.
|
Specifies the number of character positions in the interval.
length: number
| Type | Description |
|---|---|
| number |
The interval length.
|
Specifies the interval’s start position in the document.
start: number
| Type | Description |
|---|---|
| number |
The start position.
|