[]
        
(Showing Draft Content)

ReportViewer.Range

Class: Range

ReportViewer.Range

Represents a text range.

example

const range = new Range(0, 10);

Table of contents

Constructors

Properties

Accessors

Constructors

constructor

new Range(start, length)

Initializes a new instance of the Range class.

example

const range = new Range(5, 12);

Parameters

Name Type Description
start number The range start.
length number The range length.

Properties

Length

Readonly Length: number

Gets the range length.


Start

Readonly Start: number

Gets the range start.


Empty

Static Readonly Empty: Range

Gets an empty range instance.

Accessors

isEmpty

get isEmpty(): boolean

Gets a value indicating whether the range is empty.

Returns

boolean