| Package | mx.core | 
| Interface | public interface IWindow | 
| Implementors | Window, Window, WindowedApplication, WindowedApplication | 
| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
| Property | Defined By | ||
|---|---|---|---|
| maximizable : Boolean [read-only] 
      Specifies whether the window can be maximized. | IWindow | ||
| minimizable : Boolean [read-only] 
      Specifies whether the window can be minimized. | IWindow | ||
| nativeWindow : NativeWindow [read-only] 
      The underlying NativeWindow that the Window component uses. | IWindow | ||
| resizable : Boolean [read-only] 
      Specifies whether the window can be resized. | IWindow | ||
| status : String 
      The string that appears in the status bar, if it is visible. | IWindow | ||
| systemChrome : String [read-only] 
      Specifies the type of system chrome (if any) the window has. | IWindow | ||
| title : String 
      The title text that appears in the window title bar and
      the taskbar. | IWindow | ||
| titleIcon : Class 
      The Class (usually an image) used to draw the title bar icon. | IWindow | ||
| transparent : Boolean [read-only] 
      Specifies whether the window is transparent. | IWindow | ||
| type : String [read-only] 
      Specifies the type of NativeWindow that this component
      represents. | IWindow | ||
| visible : Boolean [read-only] 
      Controls the window's visibility. | IWindow | ||
| Method | Defined By | ||
|---|---|---|---|
| 
      Closes the window. | IWindow | ||
| 
      Maximizes the window, or does nothing if it's already maximized. | IWindow | ||
| 
      Minimizes the window. | IWindow | ||
| 
      Restores the window (unmaximizes it if it's maximized, or
      unminimizes it if it's minimized). | IWindow | ||
| maximizable | property | 
| minimizable | property | 
| nativeWindow | property | 
nativeWindow:NativeWindow  [read-only] | Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
The underlying NativeWindow that the Window component uses.
Implementation
    public function get nativeWindow():NativeWindow| resizable | property | 
| status | property | 
| systemChrome | property | 
systemChrome:String  [read-only] | Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Specifies the type of system chrome (if any) the window has. The set of possible values is defined by the constants in the NativeWindowSystemChrome class.
Implementation
    public function get systemChrome():StringRelated API Elements
| title | property | 
| titleIcon | property | 
| transparent | property | 
| type | property | 
type:String  [read-only] | Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Specifies the type of NativeWindow that this component represents. The set of possible values is defined by the constants in the NativeWindowType class.
Implementation
    public function get type():StringRelated API Elements
| visible | property | 
| close | () | method | 
 public function close():void| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Closes the window.
| maximize | () | method | 
 public function maximize():void| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Maximizes the window, or does nothing if it's already maximized.
| minimize | () | method | 
 public function minimize():void| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Minimizes the window.
| restore | () | method | 
 public function restore():void| Language Version: | ActionScript 3.0 | 
| Product Version: | Flex 3 | 
| Runtime Versions: | AIR 1.1 | 
Restores the window (unmaximizes it if it's maximized, or unminimizes it if it's minimized).
Thu Dec 4 2014, 05:50 PM -08:00