Package | com.adobe.csxs.types |
Class | public class AppSkinInfo |
Property | Defined 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 |
Method | Defined 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 |
appBarBackgroundColor | property |
appBarBackgroundColor:UIColor
[read-write]Retrieves the application bar background color.
Implementation public function get appBarBackgroundColor():UIColor
public function set appBarBackgroundColor(value:UIColor):void
appBarBackgroundColorSRGB | property |
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
baseFontFamily | property |
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
baseFontSize | property |
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
panelBackgroundColor | property |
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
panelBackgroundColorSRGB | property |
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
systemHighlightColor | property |
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
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.
ParametersbaseFontFamily: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.
|
toString | () | method |
public function toString():String
Creates a string that contains all the properties of this object.
ReturnsString — The properties string.
|