Packagedom.style.css
Classpublic class Rect
InheritanceRect Inheritance Object

Introduced in: DOM 2 Core 

The Rect interface is used to represent any rect value.

This interface reflects the values in the underlying style property. Hence, modifications made to the CSSPrimitiveValue objects modify the style property.

See also

W3C - DOM Level 2 Style: Rect


Public Properties
 PropertyDefined By
  DOM 2 Style bottom : CSSPrimitiveValue
[read-only] This attribute is used for the bottom of the rect.
Rect
  DOM 2 Style left : CSSPrimitiveValue
[read-only] This attribute is used for the left of the rect.
Rect
  DOM 2 Style right : CSSPrimitiveValue
[read-only] This attribute is used for the right of the rect.
Rect
  DOM 2 Style top : CSSPrimitiveValue
[read-only] This attribute is used for the top of the rect.
Rect
Property Detail
DOM 2 Style bottomproperty
bottom:CSSPrimitiveValue  [read-only]

Introduced in: DOM 2 Core 

This attribute is used for the bottom of the rect.


Implementation
    public function get bottom():CSSPrimitiveValue

See also

DOM 2 Style leftproperty 
left:CSSPrimitiveValue  [read-only]

Introduced in: DOM 2 Core 

This attribute is used for the left of the rect.


Implementation
    public function get left():CSSPrimitiveValue

See also

DOM 2 Style rightproperty 
right:CSSPrimitiveValue  [read-only]

Introduced in: DOM 2 Core 

This attribute is used for the right of the rect.


Implementation
    public function get right():CSSPrimitiveValue

See also

DOM 2 Style topproperty 
top:CSSPrimitiveValue  [read-only]

Introduced in: DOM 2 Core 

This attribute is used for the top of the rect.


Implementation
    public function get top():CSSPrimitiveValue

See also