[]
ReportViewer.Range
Represents a text range.
example
const range = new Range(0, 10);
• new Range(start, length)
Initializes a new instance of the Range class.
example
const range = new Range(5, 12);
| Name | Type | Description |
|---|---|---|
start |
number |
The range start. |
length |
number |
The range length. |
• Readonly Length: number
Gets the range length.
• Readonly Start: number
Gets the range start.
▪ Static Readonly Empty: Range
Gets an empty range instance.
• get isEmpty(): boolean
Gets a value indicating whether the range is empty.
boolean