Packagecom.adobe.csxs.types
Classpublic class AppSkinInfo

Stores window-skin properties, such as color and font.



Public Properties
 PropertyDefined by
  appBarBackgroundColor : UIColor
Retrieves the application bar background color.
AppSkinInfo
  appBarBackgroundColorSRGB : UIColor
Retrieves the application bar background color as sRGB.
AppSkinInfo
  baseFontFamily : String
Retrieves the base font family of the application.
AppSkinInfo
  baseFontSize : uint
Retrieves the base font size of the application.
AppSkinInfo
  panelBackgroundColor : UIColor
Retrieves the background color of the extension panel.
AppSkinInfo
  panelBackgroundColorSRGB : UIColor
Retrieves the background color of the extension panel as sRGB.
AppSkinInfo
  systemHighlightColor : RGBColor
Retrieves the operating-system highlight color as sRGB.
AppSkinInfo
Public Methods
 MethodDefined by
  
AppSkinInfo(baseFontFamily:String = "", baseFontSize:uint = 0, appBarBackgroundColor:UIColor = null, panelBackgroundColor:UIColor = null, appBarBackgroundColorSRGB:UIColor = null, panelBackgroundColorSRGB:UIColor = null, m_systemHighlightColor:RGBColor = null)
Creates a window-skin properties object.
AppSkinInfo
  
toString():String
Creates a string that contains all the properties of this object.
AppSkinInfo
Property detail
appBarBackgroundColorproperty
appBarBackgroundColor:UIColor  [read-write]

Retrieves the application bar background color.

Implementation
    public function get appBarBackgroundColor():UIColor
    public function set appBarBackgroundColor(value:UIColor):void
appBarBackgroundColorSRGBproperty 
appBarBackgroundColorSRGB:UIColor  [read-write]

Retrieves the application bar background color as sRGB.

Implementation
    public function get appBarBackgroundColorSRGB():UIColor
    public function set appBarBackgroundColorSRGB(value:UIColor):void
baseFontFamilyproperty 
baseFontFamily:String  [read-write]

Retrieves the base font family of the application.

Implementation
    public function get baseFontFamily():String
    public function set baseFontFamily(value:String):void
baseFontSizeproperty 
baseFontSize:uint  [read-write]

Retrieves the base font size of the application.

Implementation
    public function get baseFontSize():uint
    public function set baseFontSize(value:uint):void
panelBackgroundColorproperty 
panelBackgroundColor:UIColor  [read-write]

Retrieves the background color of the extension panel.

Implementation
    public function get panelBackgroundColor():UIColor
    public function set panelBackgroundColor(value:UIColor):void
panelBackgroundColorSRGBproperty 
panelBackgroundColorSRGB:UIColor  [read-write]

Retrieves the background color of the extension panel as sRGB.

Implementation
    public function get panelBackgroundColorSRGB():UIColor
    public function set panelBackgroundColorSRGB(value:UIColor):void
systemHighlightColorproperty 
systemHighlightColor:RGBColor  [read-write]

Retrieves the operating-system highlight color as sRGB.

Implementation
    public function get systemHighlightColor():RGBColor
    public function set systemHighlightColor(value:RGBColor):void
Constructor detail
AppSkinInfo()constructor
public function AppSkinInfo(baseFontFamily:String = "", baseFontSize:uint = 0, appBarBackgroundColor:UIColor = null, panelBackgroundColor:UIColor = null, appBarBackgroundColorSRGB:UIColor = null, panelBackgroundColorSRGB:UIColor = null, m_systemHighlightColor:RGBColor = null)

Creates a window-skin properties object.

Parameters
baseFontFamily:String (default = "") — The base font family of the application.
 
baseFontSize:uint (default = 0) — The base font size of the application.
 
appBarBackgroundColor:UIColor (default = null) — The application bar background color.
 
panelBackgroundColor:UIColor (default = null) — The background color of the extension panel.
 
appBarBackgroundColorSRGB:UIColor (default = null) — The application bar background color, as sRGB.
 
panelBackgroundColorSRGB:UIColor (default = null) — The background color of the extension panel, as sRGB.
 
m_systemHighlightColor:RGBColor (default = null) — The operating-system highlight color, as sRGB.
Method detail
toString()method
public function toString():String

Creates a string that contains all the properties of this object.

Returns
String — The properties string.