Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IInterval Interface

Defines settings for a text interval.

#Declaration

TypeScript
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};

#Inheritance

IInterval

#Properties

#length Property

Specifies the number of character positions in the interval.

#Declaration

TypeScript
length: number

#Property Value

Type Description
number

The interval length.

#start Property

Specifies the interval’s start position in the document.

#Declaration

TypeScript
start: number

#Property Value

Type Description
number

The start position.