Back to Devexpress

IInterval Interface

aspnetcore-js-devexpress-dot-richedit-c37037f7.md

latest919 B
Original Source

IInterval Interface

Defines settings for a text interval.

Declaration

ts
export interface IInterval

Remarks

The IInterval interface is a structure that holds information about a text interval.

javascript
var intervalA = new DevExpress.RichEdit.Interval(0, 1);
var intervalB = { start: 0, length: 1};

Inheritance

IInterval Interval

Properties

length Property

Specifies the number of character positions in the interval.

Declaration

ts
length: number

Property Value

TypeDescription
number

The interval length.

|

start Property

Specifies the interval’s start position in the document.

Declaration

ts
start: number

Property Value

TypeDescription
number

The start position.

|