| Property | Defined by | ||
|---|---|---|---|
| catchCallLaterExceptions : Boolean [static]
A global flag that can is used to catch unhandled exceptions
during execution of methods executed via callLater
| UIComponentGlobals | ||
| designMode : Boolean [static]
A global flag that can be read by any component to determine
whether it is currently executing in the context of a design
tool such as Flex Builder's design view.
| UIComponentGlobals | ||
| catchCallLaterExceptions | property |
catchCallLaterExceptions:Boolean [read-write]A global flag that can is used to catch unhandled exceptions during execution of methods executed via callLater
Implementation public static function get catchCallLaterExceptions():Boolean
public function set catchCallLaterExceptions(value:Boolean):void
| designMode | property |
designMode:Boolean [read-write]A global flag that can be read by any component to determine whether it is currently executing in the context of a design tool such as Flex Builder's design view. Most components will never need to check this flag, but if a component needs to have different behavior at design time than at runtime, then it can check this flag.
Implementation public static function get designMode():Boolean
public function set designMode(value:Boolean):void