Packagecom.addicted2flash.layout.util
Classpublic final class Overflow

Enumeration of different overflow types.



Public Methods
 MethodDefined by
  
typeToString(type:int):String
[static] Returns the string representation of the given overflow.
Overflow
Public Constants
 ConstantDefined by
  AUTO : int = 0x001
[static] Auto overflow.
Overflow
  HIDDEN : int = 0x003
[static] Hidden overflow.
Overflow
  SCROLL : int = 0x002
[static] Scroll overflow.
Overflow
Method detail
typeToString()method
public static function typeToString(type:int):String

Returns the string representation of the given overflow.

Parameters
type:int — type of overflow

Returns
String — the string representation of the given overflow

Throws
— if overflow is not supported
Constant detail
AUTOconstant
public static const AUTO:int = 0x001

Auto overflow. Scroller will be visible only if container requires it.

HIDDENconstant 
public static const HIDDEN:int = 0x003

Hidden overflow. Scroller will only cut overflow, but not show scroll components (equals to scollRect).

SCROLLconstant 
public static const SCROLL:int = 0x002

Scroll overflow. Scroller will be active only if container requires it (but visible).