AbstractRange

Overview

The AbstractRange abstract interface is the base class upon which all DOM range types are defined. A range is an object that indicates the start and end points of a section of content within the document.

Location

Properties


collapsed

 

property collapsed: Boolean read;

 

Boolean collapsed { get; }

 

var collapsed: Boolean { get{} }

 

Boolean collapsed { __get; }

 

ReadOnly Property collapsed() As Boolean

endContainer

 

property endContainer: Node read;

 

Node endContainer { get; }

 

var endContainer: Node { get{} }

 

Node endContainer { __get; }

 

ReadOnly Property endContainer() As Node

endOffset

 

property endOffset: Int32 read;

 

Int32 endOffset { get; }

 

var endOffset: Int32 { get{} }

 

Int32 endOffset { __get; }

 

ReadOnly Property endOffset() As Int32

startContainer

 

property startContainer: Node read;

 

Node startContainer { get; }

 

var startContainer: Node { get{} }

 

Node startContainer { __get; }

 

ReadOnly Property startContainer() As Node

startOffset

 

property startOffset: Int32 read;

 

Int32 startOffset { get; }

 

var startOffset: Int32 { get{} }

 

Int32 startOffset { __get; }

 

ReadOnly Property startOffset() As Int32