Packagefeathers.layout
Classpublic class ViewPortBounds
InheritanceViewPortBounds Inheritance Object

Product Version : Feathers 1.0.0

Used by layout algorithms for determining the bounds in which to position and size items.



Public Properties
 PropertyDefined By
  explicitHeight : Number = NaN
The explicit height of the view port, in pixels.
ViewPortBounds
  explicitWidth : Number = NaN
The explicit width of the view port, in pixels.
ViewPortBounds
  maxHeight : Number = Infinity
The maximum height of the view port, in pixels.
ViewPortBounds
  maxWidth : Number = Infinity
The maximum width of the view port, in pixels.
ViewPortBounds
  minHeight : Number = 0
The minimum width of the view port, in pixels.
ViewPortBounds
  minWidth : Number = 0
The minimum width of the view port, in pixels.
ViewPortBounds
  scrollX : Number = 0
The horizontal scroll position of the view port, in pixels.
ViewPortBounds
  scrollY : Number = 0
The vertical scroll position of the view port, in pixels.
ViewPortBounds
  x : Number = 0
The x position of the view port, in pixels.
ViewPortBounds
  y : Number = 0
The y position of the view port, in pixels.
ViewPortBounds
Public Methods
 MethodDefined By
  
Constructor.
ViewPortBounds
Property Detail
explicitHeightproperty
public var explicitHeight:Number = NaN

The explicit height of the view port, in pixels. If NaN, there is no explicit height value.

explicitWidthproperty 
public var explicitWidth:Number = NaN

The explicit width of the view port, in pixels. If NaN, there is no explicit width value.

maxHeightproperty 
public var maxHeight:Number = Infinity

The maximum height of the view port, in pixels. Should be 0 or a positive number, including infinity.

maxWidthproperty 
public var maxWidth:Number = Infinity

The maximum width of the view port, in pixels. Should be 0 or a positive number, including infinity.

minHeightproperty 
public var minHeight:Number = 0

The minimum width of the view port, in pixels. Should be 0 or a positive number less than infinity.

minWidthproperty 
public var minWidth:Number = 0

The minimum width of the view port, in pixels. Should be 0 or a positive number less than infinity.

scrollXproperty 
public var scrollX:Number = 0

The horizontal scroll position of the view port, in pixels.

scrollYproperty 
public var scrollY:Number = 0

The vertical scroll position of the view port, in pixels.

xproperty 
public var x:Number = 0

The x position of the view port, in pixels.

yproperty 
public var y:Number = 0

The y position of the view port, in pixels.

Constructor Detail
ViewPortBounds()Constructor
public function ViewPortBounds()

Constructor.