| Package | com.adobe.csxs.types |
| Class | public class StateInfo |
| Property | Defined by | ||
|---|---|---|---|
| appSkinInfo : AppSkinInfo
Retrieves the skin information of the hosting application.
| StateInfo | ||
| hasFocus : Boolean
Retrieves the focus status of the extension window.
| StateInfo | ||
| isAppOffline : Boolean
Retrieves the offline status of the hosting application.
| StateInfo | ||
| isLoaded : Boolean
Retrieves the loaded status of the extension window.
| StateInfo | ||
| isMinimized : Boolean
Retrieves the minimized status of the extension window.
| StateInfo | ||
| isVisible : Boolean
Retrieves the visibility status of the extension window.
| StateInfo | ||
| winGeom : WindowGeometry
Retrieves geometry information for the extension window.
| StateInfo | ||
| Method | Defined by | ||
|---|---|---|---|
|
StateInfo(isVisible:Boolean = false, isMinimized:Boolean = false, isLoaded:Boolean = false, isAppOffline:Boolean = false, hasFocus:Boolean = false, winGeom:WindowGeometry = null, appSkinInfo:AppSkinInfo = null)
Creates a state information object.
| StateInfo | ||
|
toString():String
Creates a string that contains all the properties of this object.
| StateInfo | ||
| appSkinInfo | property |
appSkinInfo:AppSkinInfo [read-write]Retrieves the skin information of the hosting application.
This property can be used as the source for data binding.
Implementation public function get appSkinInfo():AppSkinInfo
public function set appSkinInfo(value:AppSkinInfo):void
See also
| hasFocus | property |
hasFocus:Boolean [read-write]Retrieves the focus status of the extension window.
This property can be used as the source for data binding.
Implementation public function get hasFocus():Boolean
public function set hasFocus(value:Boolean):void
| isAppOffline | property |
isAppOffline:Boolean [read-write]Retrieves the offline status of the hosting application.
This property can be used as the source for data binding.
Implementation public function get isAppOffline():Boolean
public function set isAppOffline(value:Boolean):void
| isLoaded | property |
isLoaded:Boolean [read-write]Retrieves the loaded status of the extension window.
This property can be used as the source for data binding.
Implementation public function get isLoaded():Boolean
public function set isLoaded(value:Boolean):void
| isMinimized | property |
isMinimized:Boolean [read-write]Retrieves the minimized status of the extension window.
This property can be used as the source for data binding.
Implementation public function get isMinimized():Boolean
public function set isMinimized(value:Boolean):void
| isVisible | property |
isVisible:Boolean [read-write]Retrieves the visibility status of the extension window.
This property can be used as the source for data binding.
Implementation public function get isVisible():Boolean
public function set isVisible(value:Boolean):void
| winGeom | property |
winGeom:WindowGeometry [read-write]Retrieves geometry information for the extension window.
This property can be used as the source for data binding.
Implementation public function get winGeom():WindowGeometry
public function set winGeom(value:WindowGeometry):void
See also
| StateInfo | () | constructor |
public function StateInfo(isVisible:Boolean = false, isMinimized:Boolean = false, isLoaded:Boolean = false, isAppOffline:Boolean = false, hasFocus:Boolean = false, winGeom:WindowGeometry = null, appSkinInfo:AppSkinInfo = null)Creates a state information object.
ParametersisVisible:Boolean (default = false) — True if the extension window is shown, false if it is hidden.
|
|
isMinimized:Boolean (default = false) — True if the extension window is minimized/iconified.
|
|
isLoaded:Boolean (default = false) — True if the extension window is fully initialized.
|
|
isAppOffline:Boolean (default = false) — True if the hosting application is offline.
|
|
hasFocus:Boolean (default = false) — True if the extension window has the input focus.
|
|
winGeom:WindowGeometry (default = null) — A window geometry object containing the extension window's size and position.
|
|
appSkinInfo:AppSkinInfo (default = null) — An object containing the hosting application's default font and color values.
|
| toString | () | method |
public function toString():StringCreates a string that contains all the properties of this object.
ReturnsString — The properties string.
|