| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><!-- saved from url=(0014)about:internet --><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" href="../../style.css" type="text/css" media="screen"><link rel="stylesheet" href="../../print.css" type="text/css" media="print"><link rel="stylesheet" href="../../override.css" type="text/css"><meta name="keywords" content="Label,spark.components.Label"><title>spark.components.Label</title><script src="../../AC_OETags.js" type="text/javascript"></script></head><body><script language="javascript" type="text/javascript" src="../../asdoc.js"></script><script language="javascript" type="text/javascript" src="../../help.js"></script><script language="javascript" type="text/javascript" src="../../cookies.js"></script><script language="javascript" type="text/javascript"><!-- |
| asdocTitle = 'Label - ApacheFlex API Reference'; |
| var baseRef = '../../'; |
| window.onload = configPage; |
| --></script> |
| <script type="text/javascript"> |
| scrollToNameAnchor(); |
| </script><table class="titleTable" cellpadding="0" cellspacing="0" id="titleTable" style="display:none"><tr><td class="titleTableTitle" align="left">Apache Flex 4.16.1 API Reference </td><td class="titleTableTopNav" align="right"><a href="../../package-summary.html" onclick="loadClassListFrame('../../all-classes.html')">All Packages</a> | <a href="../../class-summary.html" onclick="loadClassListFrame('../../all-classes.html')">All Classes</a> | <a href="../../all-index-A.html" onclick="loadClassListFrame('../../index-list.html')">Index</a> | <a id="framesLink1" href="../../index.html?spark/components/Label.html&spark/components/class-list.html">Frames</a><a id="noFramesLink1" style="display:none" href="" onclick="parent.location=document.location"> No Frames </a></td><td class="titleTableLogo" align="right" rowspan="3"><img src="../../images/logo.jpg" class="logoImage" alt="AdobeLogo" title="AdobeLogo"></td></tr><tr class="titleTableRow2"><td class="titleTableSubTitle" id="subTitle" align="left">Label</td><td class="titleTableSubNav" id="subNav" align="right"><a href="#propertySummary">Properties</a> | <a href="#methodSummary">Methods</a> | <a href="#eventSummary">Events</a> | <a href="#styleSummary">Styles</a> | <a href="#effectSummary">Effects</a> | <a href="#constantSummary">Constants</a> | <a href="#includeExamplesSummary">Examples</a></td></tr><tr class="titleTableRow3"><td colspan="3"> </td></tr></table><script language="javascript" type="text/javascript" xml:space="preserve"> |
| <!-- |
| |
| if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("Label"); titleBar_setSubNav(true,true,true,false,false,true,true,false,true,true,false ,false,false,false,false,false);} |
| --> |
| </script><div xmlns:fn="http://www.w3.org/2005/xpath-functions" class="MainContent"><table class="classHeaderTable" cellpadding="0" cellspacing="0"><tr><td class="classHeaderTableLabel">Package</td><td><a href="package-detail.html" onclick="javascript:loadClassListFrame('class-list.html')">spark.components</a></td></tr><tr><td class="classHeaderTableLabel">Class</td><td class="classSignature">public class Label</td></tr><tr><td class="classHeaderTableLabel">Inheritance</td><td class="inheritanceList">Label <img src="../../images/inherit-arrow.gif" title="Inheritance" alt="Inheritance" class="inheritArrow"> <a href="../../spark/components/supportClasses/TextBase.html">TextBase</a> <img src="../../images/inherit-arrow.gif" title="Inheritance" alt="Inheritance" class="inheritArrow"> <a href="../../mx/core/UIComponent.html">UIComponent</a> <img src="../../images/inherit-arrow.gif" title="Inheritance" alt="Inheritance" class="inheritArrow"> <a href="../../mx/core/FlexSprite.html">FlexSprite</a> <img src="../../images/inherit-arrow.gif" title="Inheritance" alt="Inheritance" class="inheritArrow"> flash.display.Sprite</td></tr></table><p></p><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Language Version : </b></td><td>ActionScript 3.0</td></tr></table><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Product Version : </b></td><td>Flex 4</td></tr></table><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Runtime Versions : </b></td><td>Flash Player 10, AIR 1.5</td></tr></table><p></p><p></p><p></p><p></p> |
| Label is a low-level UIComponent that can render |
| one or more lines of uniformly-formatted text. |
| The text to be displayed is determined by the |
| <code>text</code> property inherited from TextBase. |
| The formatting of the text is specified by the element's CSS styles, |
| such as <code>fontFamily</code> and <code>fontSize</code>. |
| <p>Label uses of the |
| Flash Text Engine (FTE) in Flash Player to provide high-quality |
| international typography. |
| Because Label is fast and lightweight, it is especially suitable |
| for use cases that involve rendering many small pieces of non-interactive |
| text, such as item renderers and labels in Button skins.</p> |
| <p>The Spark architecture provides three text "primitives" -- |
| Label, RichText, and RichEditableText -- |
| as part of its pay-only-for-what-you-need philosophy. |
| Label is the fastest and most lightweight, |
| but is limited in its capabilities: no complex formatting, |
| no scrolling, no selection, no editing, and no hyperlinks. |
| RichText and RichEditableText are built on the Text Layout |
| Framework (TLF) library, rather than on FTE. |
| RichText adds the ability to render rich HTML-like text |
| with complex formatting, but is still completely non-interactive. |
| RichEditableText is the slowest and heaviest, |
| but can do it all: it supports scrolling with virtualized TextLines, |
| selection, editing, hyperlinks, and images loaded from URLs. |
| You should use the fastest one that meets your needs.</p> |
| <p>The Spark Label control is similar to the MX Label control, mx.controls.Label. |
| The most important differences are: |
| <ul> |
| <li>Spark Label uses FTE, the player's new text engine, |
| while MX Label uses the TextField class.</li> |
| <li>Spark Label offers better typography, and better support |
| for international languages, than MX Label.</li> |
| <li>Spark Label can display multiple lines, which MX Label cannot.</li> |
| <li>MX Label can display a limited subset of HTML, |
| while Spark Label can only display text with uniform formatting.</li> |
| <li>MX Label can be made selectable, while Spark Label cannot.</li> |
| </ul> |
| </p> |
| <p>In Spark Label, three character sequences are recognized |
| as explicit line breaks: CR (<code>"\r"</code>), LF (<code>"\n"</code>), |
| and CR+LF (<code>"\r\n"</code>).</p> |
| <p>If you don't specify any kind of width for a Label, |
| then the longest line, as determined by these explicit line breaks, |
| determines the width of the Label.</p> |
| <p>If you do specify some kind of width, then the specified text is |
| word-wrapped at the right edge of the component's bounds, because the |
| default value of the <code>lineBreak</code> style is <code>"toFit"</code>. |
| If the text extends below the bottom of the component, |
| it is clipped.</p> |
| <p>To disable this automatic wrapping, set the <code>lineBreak</code> |
| style to <code>"explicit"</code>. Then lines are broken only where |
| the <code>text</code> contains an explicit line break, |
| and the ends of lines extending past the right edge is clipped.</p> |
| <p>If you have more text than you have room to display it, |
| Label can truncate the text for you. |
| Truncating text means replacing excess text |
| with a truncation indicator such as "...". |
| See the inherited properties <code>maxDisplayedLines</code> |
| and <code>isTruncated</code>.</p> |
| <p>You can control the line spacing with the <code>lineHeight</code> style. |
| You can horizontally and vertically align the text within the element's |
| bounds using the <code>textAlign</code>, <code>textAlignLast</code>, |
| and <code>verticalAlign</code> styles. |
| You can inset the text from the element's edges using the |
| <code>paddingLeft</code>, <code>paddingTop</code>, |
| <code>paddingRight</code>, and <code>paddingBottom</code> styles.</p> |
| <p>By default a Label has no background, |
| but you can draw one using the <code>backgroundColor</code> |
| and <code>backgroundAlpha</code> styles. |
| Borders are not supported. |
| If you need a border, or a more complicated background, use a separate |
| graphic element, such as a Rect, behind the Label.</p> |
| <p>Label supports displaying left-to-right (LTR) text such as French, |
| right-to-left (RTL) text such as Arabic, and bidirectional text |
| such as a French phrase inside of an Arabic paragraph. |
| If the predominant text direction is right-to-left, |
| set the <code>direction</code> style to <code>"rtl"</code>. |
| The <code>textAlign</code> style defaults to <code>"start"</code>, |
| which makes the text left-aligned when <code>direction</code> |
| is <code>"ltr"</code> and right-aligned when <code>direction</code> |
| is <code>"rtl"</code>. |
| To get the opposite alignment, |
| set <code>textAlign</code> to <code>"end"</code>.</p> |
| <p>Label uses the TextBlock class in the Flash Text Engine |
| to create one or more TextLine objects to statically display |
| its text String in the format determined by its CSS styles. |
| For performance, its TextLines do not contain information |
| about individual glyphs; for more info, see |
| flash.text.engine.TextLineValidity.STATIC.</p> |
| <p>The Label control has the following default characteristics:</p> |
| <table class="innertable" ><tr><th>Characteristic</th><th>Description</th></tr><tr><td>Default size</td><td>0 pixels wide by 12 pixels high if it contains no text, |
| and large enough ti display the text if it does</td></tr><tr><td>Minimum size</td><td>0 pixels</td></tr><tr><td>Maximum size</td><td>10000 pixels wide and 10000 pixels high</td></tr></table> |
| <p></p><a name="mxmlSyntaxSummary"></a><span class="classHeaderTableLabel">MXML Syntax</span><span id="showMxmlLink" style="display:none"><a href="#mxmlSyntaxSummary" onclick="toggleMXMLOnly();"><img src="../../images/collapsed.gif" title="collapsed" alt="collapsed" class="collapsedImage">Show MXML Syntax</a><br/></span><span id="hideMxmlLink"><a href="#mxmlSyntaxSummary" onclick="toggleMXMLOnly();"><img src="../../images/expanded.gif" title="expanded" alt="expanded" class="expandedImage">Hide MXML Syntax</a></span><div id="mxmlSyntax" class="mxmlSyntax"><p>The <code><s:Label></code> tag inherits all of the tag |
| attributes of its superclass and adds the following tag attributes:</p> |
| <pre> |
| <s:Label |
| <strong>Styles</strong> |
| alignmentBaseline="baseline" |
| baselineShift="0" |
| cffHinting="0.0" |
| color="0x000000" |
| digitCase="default" |
| digitWidth="default" |
| direction="ltr" |
| dominantBaseline="auto" |
| fontFamily="Arial" |
| fontLookup="embeddedCFF" |
| fontSize="12" |
| fontStyle="normal" |
| fontWeight="normal" |
| justificationRule="auto" |
| justificationStyle="auto" |
| kerning="false" |
| ligatureLevel="common" |
| lineBreak="toFit" |
| lineHeight="120%" |
| lineThrough="false" |
| locale="en" |
| paddingBottom="0" |
| paddingLeft="0" |
| paddingRight="0" |
| paddingTop="0" |
| renderingMode="cff" |
| textAlign="start" |
| textAlignLast="start" |
| textAlpha="1" |
| textDecoration="start" |
| textJustify="interWord" |
| trackingLeft="0" |
| trackingRight="00" |
| typographicCase="default" |
| verticalAlign="top" |
| /> |
| </pre> |
| </div><script language="javascript" type="text/javascript"><!-- |
| setMXMLOnly(); |
| --></script><p><span class="classHeaderTableLabel">Default MXML Property</span><code>text</code></p><p><a href="#includeExamplesSummary">View the examples</a></p><p><span class="classHeaderTableLabel">See also</span></p><div class="seeAlso"><a href="RichEditableText.html" target="">spark.components.RichEditableText</a><br/><a href="RichText.html" target="">spark.components.RichText</a><br/>flash.text.engine.TextLineValidity.STATIC</div><br/><hr></div><a name="propertySummary"></a><div class="summarySection"><div class="summaryTableTitle">Public Properties</div><div class="showHideLinks"><div id="hideInheritedProperty" class="hideInheritedProperty"><a class="showHideLink" href="#propertySummary" onclick="javascript:setInheritedVisible(false,'Property');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Public Properties</a></div><div id="showInheritedProperty" class="showInheritedProperty"><a class="showHideLink" href="#propertySummary" onclick="javascript:setInheritedVisible(true,'Property');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Public Properties</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedProperty" id="summaryTableProperty"><tr><th> </th><th colspan="2">Property</th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#accessibilityDescription" class="signatureLink">accessibilityDescription</a> : String<div class="summaryTableDescription"> |
| A convenience accessor for the description property |
| in this UIComponent's accessibilityProperties object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#accessibilityEnabled" class="signatureLink">accessibilityEnabled</a> : Boolean<div class="summaryTableDescription"> |
| A convenience accessor for the silent property |
| in this UIComponent's accessibilityProperties object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#accessibilityName" class="signatureLink">accessibilityName</a> : String<div class="summaryTableDescription"> |
| A convenience accessor for the name property |
| in this UIComponent's accessibilityProperties object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#accessibilityShortcut" class="signatureLink">accessibilityShortcut</a> : String<div class="summaryTableDescription"> |
| A convenience accessor for the shortcut property |
| in this UIComponent's accessibilityProperties object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#activeEffects" class="signatureLink">activeEffects</a> : Array<div class="summaryTableDescription">[read-only] |
| The list of effects that are currently playing on the component, |
| as an Array of EffectInstance instances.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationDelegate" class="signatureLink">automationDelegate</a> : Object<div class="summaryTableDescription"> |
| The delegate object that handles the automation-related functionality.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationEnabled" class="signatureLink">automationEnabled</a> : Boolean<div class="summaryTableDescription">[read-only] |
| |
| True if this component is enabled for automation, false |
| otherwise.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationName" class="signatureLink">automationName</a> : String<div class="summaryTableDescription"> |
| |
| Name that can be used as an identifier for this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationOwner" class="signatureLink">automationOwner</a> : DisplayObjectContainer<div class="summaryTableDescription">[read-only] |
| |
| The owner of this component for automation purposes.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationParent" class="signatureLink">automationParent</a> : DisplayObjectContainer<div class="summaryTableDescription">[read-only] |
| |
| The parent of this component for automation purposes.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationTabularData" class="signatureLink">automationTabularData</a> : Object<div class="summaryTableDescription">[read-only] |
| |
| An implementation of the IAutomationTabularData interface, which |
| can be used to retrieve the data.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationValue" class="signatureLink">automationValue</a> : Array<div class="summaryTableDescription">[read-only] |
| This value generally corresponds to the rendered appearance of the |
| object and should be usable for correlating the identifier with |
| the object as it appears visually within the application.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#automationVisible" class="signatureLink">automationVisible</a> : Boolean<div class="summaryTableDescription">[read-only] |
| |
| True if this component is visible for automation, false |
| otherwise.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#baseline" class="signatureLink">baseline</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#baselinePosition" class="signatureLink">baselinePosition</a> : Number<div class="summaryTableDescription">[read-only] |
| |
| The y-coordinate of the baseline |
| of the first line of text of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#bottom" class="signatureLink">bottom</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#cacheHeuristic" class="signatureLink">cacheHeuristic</a> : Boolean<div class="summaryTableDescription">[write-only] |
| Used by Flex to suggest bitmap caching for the object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#cachePolicy" class="signatureLink">cachePolicy</a> : String<div class="summaryTableDescription"> |
| Specifies the bitmap caching policy for this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#className" class="signatureLink">className</a> : String<div class="summaryTableDescription">[read-only] |
| The name of this instance's class, such as "Button".</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#contentMouseX" class="signatureLink">contentMouseX</a> : Number<div class="summaryTableDescription">[read-only] |
| Returns the x position of the mouse, in the content coordinate system.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#contentMouseY" class="signatureLink">contentMouseY</a> : Number<div class="summaryTableDescription">[read-only] |
| Returns the y position of the mouse, in the content coordinate system.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#currentState" class="signatureLink">currentState</a> : String<div class="summaryTableDescription"> |
| The current view state of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#cursorManager" class="signatureLink">cursorManager</a> : ICursorManager<div class="summaryTableDescription">[read-only] |
| Gets the CursorManager that controls the cursor for this component |
| and its peers.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#depth" class="signatureLink">depth</a> : Number<div class="summaryTableDescription"> |
| |
| Determines the order in which items inside of containers |
| are rendered.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#descriptor" class="signatureLink">descriptor</a> : <a href="../../mx/core/UIComponentDescriptor.html">UIComponentDescriptor</a><div class="summaryTableDescription"> |
| Reference to the UIComponentDescriptor, if any, that was used |
| by the createComponentFromDescriptor() method to create this |
| UIComponent instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#designLayer" class="signatureLink">designLayer</a> : <a href="../../mx/core/DesignLayer.html">DesignLayer</a><div class="summaryTableDescription"> |
| Specifies the optional DesignLayer instance associated with this visual |
| element.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#document" class="signatureLink">document</a> : Object<div class="summaryTableDescription"> |
| A reference to the document object associated with this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#doubleClickEnabled" class="signatureLink">doubleClickEnabled</a> : Boolean<div class="summaryTableDescription">[override] |
| Specifies whether the UIComponent object receives doubleClick events.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#enabled" class="signatureLink">enabled</a> : Boolean<div class="summaryTableDescription"> |
| Whether the component can accept user interaction.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#errorString" class="signatureLink">errorString</a> : String<div class="summaryTableDescription"> |
| The text that displayed by a component's error tip when a |
| component is monitored by a Validator and validation fails.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitHeight" class="signatureLink">explicitHeight</a> : Number<div class="summaryTableDescription"> |
| Number that specifies the explicit height of the component, |
| in pixels, in the component's coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitMaxHeight" class="signatureLink">explicitMaxHeight</a> : Number<div class="summaryTableDescription"> |
| The maximum recommended height of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitMaxWidth" class="signatureLink">explicitMaxWidth</a> : Number<div class="summaryTableDescription"> |
| The maximum recommended width of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitMinHeight" class="signatureLink">explicitMinHeight</a> : Number<div class="summaryTableDescription"> |
| The minimum recommended height of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitMinWidth" class="signatureLink">explicitMinWidth</a> : Number<div class="summaryTableDescription"> |
| The minimum recommended width of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#explicitWidth" class="signatureLink">explicitWidth</a> : Number<div class="summaryTableDescription"> |
| Number that specifies the explicit width of the component, |
| in pixels, in the component's coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#flexContextMenu" class="signatureLink">flexContextMenu</a> : <a href="../../mx/controls/IFlexContextMenu.html">IFlexContextMenu</a><div class="summaryTableDescription"> |
| The context menu for this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#focusEnabled" class="signatureLink">focusEnabled</a> : Boolean<div class="summaryTableDescription"> |
| Indicates whether the component can receive focus when tabbed to.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#focusManager" class="signatureLink">focusManager</a> : <a href="../../mx/managers/IFocusManager.html">IFocusManager</a><div class="summaryTableDescription"> |
| Gets the FocusManager that controls focus for this component |
| and its peers.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#focusPane" class="signatureLink">focusPane</a> : Sprite<div class="summaryTableDescription"> |
| The focus pane associated with this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#hasFocusableChildren" class="signatureLink">hasFocusableChildren</a> : Boolean<div class="summaryTableDescription"> |
| A flag that indicates whether child objects can receive focus.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#hasLayoutMatrix3D" class="signatureLink">hasLayoutMatrix3D</a> : Boolean<div class="summaryTableDescription">[read-only] |
| |
| Contains true if the element has 3D Matrix.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#height" class="signatureLink">height</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the height of the component, in pixels, |
| in the parent's coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#horizontalCenter" class="signatureLink">horizontalCenter</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#id" class="signatureLink">id</a> : String<div class="summaryTableDescription"> |
| ID of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#includeInLayout" class="signatureLink">includeInLayout</a> : Boolean<div class="summaryTableDescription"> |
| Specifies whether this component is included in the layout of the |
| parent container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#inheritingStyles" class="signatureLink">inheritingStyles</a> : Object<div class="summaryTableDescription"> |
| The beginning of this component's chain of inheriting styles.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#initialized" class="signatureLink">initialized</a> : Boolean<div class="summaryTableDescription"> |
| A flag that determines if an object has been through all three phases |
| of layout: commitment, measurement, and layout (provided that any were required).</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#instanceIndex" class="signatureLink">instanceIndex</a> : int<div class="summaryTableDescription">[read-only] |
| The index of a repeated component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#instanceIndices" class="signatureLink">instanceIndices</a> : Array<div class="summaryTableDescription"> |
| An Array containing the indices required to reference |
| this UIComponent object from its parent document.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#is3D" class="signatureLink">is3D</a> : Boolean<div class="summaryTableDescription">[read-only] |
| |
| Contains true when the element is in 3D.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#isDocument" class="signatureLink">isDocument</a> : Boolean<div class="summaryTableDescription">[read-only] |
| Contains true if this UIComponent instance is a document object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#isPopUp" class="signatureLink">isPopUp</a> : Boolean<div class="summaryTableDescription"> |
| Set to true by the PopUpManager to indicate |
| that component has been popped up.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../spark/components/supportClasses/TextBase.html#isTruncated" class="signatureLink">isTruncated</a> : Boolean<div class="summaryTableDescription">[read-only] |
| A read-only property reporting whether the text has been truncated.</div></td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#layoutMatrix3D" class="signatureLink">layoutMatrix3D</a> : Matrix3D<div class="summaryTableDescription">[write-only] |
| The transform matrix that is used to calculate a component's layout |
| relative to its siblings.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#left" class="signatureLink">left</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#maintainProjectionCenter" class="signatureLink">maintainProjectionCenter</a> : Boolean<div class="summaryTableDescription"> |
| When true, the component keeps its projection matrix centered on the |
| middle of its bounding box.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../spark/components/supportClasses/TextBase.html#maxDisplayedLines" class="signatureLink">maxDisplayedLines</a> : int<div class="summaryTableDescription"> |
| An integer which determines whether, and where, |
| the text gets truncated.</div></td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#maxHeight" class="signatureLink">maxHeight</a> : Number<div class="summaryTableDescription"> |
| The maximum recommended height of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#maxWidth" class="signatureLink">maxWidth</a> : Number<div class="summaryTableDescription"> |
| The maximum recommended width of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#measuredHeight" class="signatureLink">measuredHeight</a> : Number<div class="summaryTableDescription"> |
| The default height of the component, in pixels.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#measuredMinHeight" class="signatureLink">measuredMinHeight</a> : Number<div class="summaryTableDescription"> |
| The default minimum height of the component, in pixels.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#measuredMinWidth" class="signatureLink">measuredMinWidth</a> : Number<div class="summaryTableDescription"> |
| The default minimum width of the component, in pixels.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#measuredWidth" class="signatureLink">measuredWidth</a> : Number<div class="summaryTableDescription"> |
| The default width of the component, in pixels.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#minHeight" class="signatureLink">minHeight</a> : Number<div class="summaryTableDescription"> |
| The minimum recommended height of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#minWidth" class="signatureLink">minWidth</a> : Number<div class="summaryTableDescription"> |
| The minimum recommended width of the component to be considered |
| by the parent during layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#moduleFactory" class="signatureLink">moduleFactory</a> : <a href="../../mx/core/IFlexModuleFactory.html">IFlexModuleFactory</a><div class="summaryTableDescription"> |
| A module factory is used as context for using embedded fonts and for |
| finding the style manager that controls the styles for this |
| component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#mouseFocusEnabled" class="signatureLink">mouseFocusEnabled</a> : Boolean<div class="summaryTableDescription"> |
| Whether you can receive focus when clicked on.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#MXMLDescriptor" class="signatureLink">MXMLDescriptor</a> : Array<div class="summaryTableDescription">[read-only] </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#MXMLProperties" class="signatureLink">MXMLProperties</a> : Array<div class="summaryTableDescription">[read-only] </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#nestLevel" class="signatureLink">nestLevel</a> : int<div class="summaryTableDescription"> |
| Depth of this object in the containment hierarchy.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#nonInheritingStyles" class="signatureLink">nonInheritingStyles</a> : Object<div class="summaryTableDescription"> |
| The beginning of this component's chain of non-inheriting styles.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#numAutomationChildren" class="signatureLink">numAutomationChildren</a> : int<div class="summaryTableDescription">[read-only] |
| |
| The number of automation children this container has.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#owner" class="signatureLink">owner</a> : DisplayObjectContainer<div class="summaryTableDescription"> |
| The owner of this IVisualElement object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#parent" class="signatureLink">parent</a> : DisplayObjectContainer<div class="summaryTableDescription">[override] [read-only] |
| The parent container or component for this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#parentApplication" class="signatureLink">parentApplication</a> : Object<div class="summaryTableDescription">[read-only] |
| A reference to the Application object that contains this UIComponent |
| instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#parentDocument" class="signatureLink">parentDocument</a> : Object<div class="summaryTableDescription">[read-only] |
| A reference to the parent document object for this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#percentHeight" class="signatureLink">percentHeight</a> : Number<div class="summaryTableDescription"> |
| Specifies the height of a component as a percentage |
| of its parent's size.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#percentWidth" class="signatureLink">percentWidth</a> : Number<div class="summaryTableDescription"> |
| Specifies the width of a component as a percentage |
| of its parent's size.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#postLayoutTransformOffsets" class="signatureLink">postLayoutTransformOffsets</a> : <a href="../../mx/geom/TransformOffsets.html">TransformOffsets</a><div class="summaryTableDescription"> |
| Defines a set of adjustments that can be applied to the object's |
| transform in a way that is invisible to its parent's layout.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#processedDescriptors" class="signatureLink">processedDescriptors</a> : Boolean<div class="summaryTableDescription"> |
| Set to true after immediate or deferred child creation, |
| depending on which one happens.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#repeater" class="signatureLink">repeater</a> : <a href="../../mx/core/IRepeater.html">IRepeater</a><div class="summaryTableDescription">[read-only] |
| A reference to the Repeater object |
| in the parent document that produced this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#repeaterIndex" class="signatureLink">repeaterIndex</a> : int<div class="summaryTableDescription">[read-only] |
| The index of the item in the data provider |
| of the Repeater that produced this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#repeaterIndices" class="signatureLink">repeaterIndices</a> : Array<div class="summaryTableDescription"> |
| An Array containing the indices of the items in the data provider |
| of the Repeaters in the parent document that produced this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#repeaters" class="signatureLink">repeaters</a> : Array<div class="summaryTableDescription"> |
| An Array containing references to the Repeater objects |
| in the parent document that produced this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#right" class="signatureLink">right</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#rotation" class="signatureLink">rotation</a> : Number<div class="summaryTableDescription">[override] </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#rotationX" class="signatureLink">rotationX</a> : Number<div class="summaryTableDescription">[override] |
| Indicates the x-axis rotation of the DisplayObject instance, in degrees, from its original orientation |
| relative to the 3D parent container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#rotationY" class="signatureLink">rotationY</a> : Number<div class="summaryTableDescription">[override] |
| Indicates the y-axis rotation of the DisplayObject instance, in degrees, from its original orientation |
| relative to the 3D parent container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#rotationZ" class="signatureLink">rotationZ</a> : Number<div class="summaryTableDescription">[override] |
| </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#scaleX" class="signatureLink">scaleX</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the horizontal scaling factor.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#scaleY" class="signatureLink">scaleY</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the vertical scaling factor.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#scaleZ" class="signatureLink">scaleZ</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the scaling factor along the z axis.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#screen" class="signatureLink">screen</a> : Rectangle<div class="summaryTableDescription">[read-only] |
| Returns an object that contains the size and position of the base |
| drawing surface for this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#showInAutomationHierarchy" class="signatureLink">showInAutomationHierarchy</a> : Boolean<div class="summaryTableDescription"> |
| |
| A flag that determines if an automation object |
| shows in the automation hierarchy.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../spark/components/supportClasses/TextBase.html#showTruncationTip" class="signatureLink">showTruncationTip</a> : Boolean<div class="summaryTableDescription"> |
| A property that controls whether the component |
| should show a toolTip when the text has been truncated.</div></td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#states" class="signatureLink">states</a> : Array<div class="summaryTableDescription"> |
| The view states that are defined for this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#styleDeclaration" class="signatureLink">styleDeclaration</a> : <a href="../../mx/styles/CSSStyleDeclaration.html">CSSStyleDeclaration</a><div class="summaryTableDescription"> |
| Storage for the inline inheriting styles on this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#styleManager" class="signatureLink">styleManager</a> : <a href="../../mx/styles/IStyleManager2.html">IStyleManager2</a><div class="summaryTableDescription">[read-only] |
| Returns the StyleManager instance used by this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#styleName" class="signatureLink">styleName</a> : Object<div class="summaryTableDescription"> |
| The class style used by this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#styleParent" class="signatureLink">styleParent</a> : <a href="../../mx/styles/IAdvancedStyleClient.html">IAdvancedStyleClient</a><div class="summaryTableDescription"> |
| A component's parent is used to evaluate descendant selectors.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#systemManager" class="signatureLink">systemManager</a> : <a href="../../mx/managers/ISystemManager.html">ISystemManager</a><div class="summaryTableDescription"> |
| Returns the SystemManager object used by this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#tabFocusEnabled" class="signatureLink">tabFocusEnabled</a> : Boolean<div class="summaryTableDescription"> |
| A flag that indicates whether this object can receive focus |
| via the TAB key |
| |
| This is similar to the tabEnabled property |
| used by the Flash Player. |
| |
| This is usually true for components that |
| handle keyboard input, but some components in controlbars |
| have them set to false because they should not steal |
| focus from another component like an editor.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../spark/components/supportClasses/TextBase.html#text" class="signatureLink">text</a> : String<div class="summaryTableDescription"> |
| The text displayed by this text component.</div></td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#toolTip" class="signatureLink">toolTip</a> : String<div class="summaryTableDescription"> |
| Text to display in the ToolTip.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#top" class="signatureLink">top</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#transform" class="signatureLink">transform</a> : Transform<div class="summaryTableDescription">[override] |
| An object with properties pertaining to a display object's matrix, color transform, |
| and pixel bounds.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#transformX" class="signatureLink">transformX</a> : Number<div class="summaryTableDescription"> |
| Sets the x coordinate for the transform center of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#transformY" class="signatureLink">transformY</a> : Number<div class="summaryTableDescription"> |
| Sets the y coordinate for the transform center of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#transformZ" class="signatureLink">transformZ</a> : Number<div class="summaryTableDescription"> |
| Sets the z coordinate for the transform center of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#transitions" class="signatureLink">transitions</a> : Array<div class="summaryTableDescription"> |
| An Array of Transition objects, where each Transition object defines a |
| set of effects to play when a view state change occurs.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#tweeningProperties" class="signatureLink">tweeningProperties</a> : Array<div class="summaryTableDescription"> |
| Array of properties that are currently being tweened on this object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#uid" class="signatureLink">uid</a> : String<div class="summaryTableDescription"> |
| A unique identifier for the object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#updateCompletePendingFlag" class="signatureLink">updateCompletePendingFlag</a> : Boolean<div class="summaryTableDescription"> |
| A flag that determines if an object has been through all three phases |
| of layout validation (provided that any were required).</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#validationSubField" class="signatureLink">validationSubField</a> : String<div class="summaryTableDescription"> |
| Used by a validator to associate a subfield with this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#verticalCenter" class="signatureLink">verticalCenter</a> : Object<div class="summaryTableDescription"> |
| For components, this layout constraint property is a |
| facade on top of the similarly-named style.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#visible" class="signatureLink">visible</a> : Boolean<div class="summaryTableDescription">[override] |
| Whether or not the display object is visible.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#width" class="signatureLink">width</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the width of the component, in pixels, |
| in the parent's coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#x" class="signatureLink">x</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the component's horizontal position, |
| in pixels, within its parent container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#y" class="signatureLink">y</a> : Number<div class="summaryTableDescription">[override] |
| Number that specifies the component's vertical position, |
| in pixels, within its parent container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#z" class="signatureLink">z</a> : Number<div class="summaryTableDescription">[override] |
| </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="protectedPropertySummary"></a><div class="summarySection"><div class="summaryTableTitle">Protected Properties</div><div class="showHideLinks"><div id="hideInheritedProtectedProperty" class="hideInheritedProtectedProperty"><a class="showHideLink" href="#protectedPropertySummary" onclick="javascript:setInheritedVisible(false,'ProtectedProperty');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Protected Properties</a></div><div id="showInheritedProtectedProperty" class="showInheritedProtectedProperty"><a class="showHideLink" href="#protectedPropertySummary" onclick="javascript:setInheritedVisible(true,'ProtectedProperty');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Protected Properties</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedProtectedProperty" id="summaryTableProtectedProperty"><tr><th> </th><th colspan="2">Property</th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedProtectedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#currentCSSState" class="signatureLink">currentCSSState</a> : String<div class="summaryTableDescription">[read-only] |
| The state to be used when matching CSS pseudo-selectors.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#hasComplexLayoutMatrix" class="signatureLink">hasComplexLayoutMatrix</a> : Boolean<div class="summaryTableDescription">[read-only] |
| Returns true if the UIComponent has any non-translation (x,y) transform properties.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#resourceManager" class="signatureLink">resourceManager</a> : <a href="../../mx/resources/IResourceManager.html">IResourceManager</a><div class="summaryTableDescription">[read-only] |
| A reference to the object which manages |
| all of the application's localized resources.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#unscaledHeight" class="signatureLink">unscaledHeight</a> : Number<div class="summaryTableDescription">[read-only] |
| A convenience method for determining the unscaled height |
| of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedProperty"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#unscaledWidth" class="signatureLink">unscaledWidth</a> : Number<div class="summaryTableDescription">[read-only] |
| A convenience method for determining the unscaled width |
| of the component |
| All of a component's drawing and child layout should be done |
| within a bounding rectangle of this width, which is also passed |
| as an argument to updateDisplayList().</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="methodSummary"></a><div class="summarySection"><div class="summaryTableTitle">Public Methods </div><div class="showHideLinks"><div id="hideInheritedMethod" class="hideInheritedMethod"><a class="showHideLink" href="#methodSummary" onclick="javascript:setInheritedVisible(false,'Method');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Public Methods</a></div><div id="showInheritedMethod" class="showInheritedMethod"><a class="showHideLink" href="#methodSummary" onclick="javascript:setInheritedVisible(true,'Method');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Public Methods</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable " id="summaryTableMethod"><tr><th> </th><th colspan="2">Method</th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class=""><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="#Label()" class="signatureLink">Label</a>()</div><div class="summaryTableDescription"> |
| Constructor.</div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#addStyleClient()" class="signatureLink">addStyleClient</a>(styleClient:<a href="../../mx/styles/IAdvancedStyleClient.html">IAdvancedStyleClient</a>):void</div><div class="summaryTableDescription"> |
| Adds a non-visual style client to this component instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#callLater()" class="signatureLink">callLater</a>(method:Function, args:Array = null):void</div><div class="summaryTableDescription"> |
| Queues a function to be called later.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#clearStyle()" class="signatureLink">clearStyle</a>(styleProp:String):void</div><div class="summaryTableDescription"> |
| Deletes a style property from this component instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#contentToGlobal()" class="signatureLink">contentToGlobal</a>(point:Point):Point</div><div class="summaryTableDescription"> |
| Converts a Point object from content coordinates to global coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#contentToLocal()" class="signatureLink">contentToLocal</a>(point:Point):Point</div><div class="summaryTableDescription"> |
| Converts a Point object from content to local coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createAutomationIDPart()" class="signatureLink">createAutomationIDPart</a>(child:<a href="../../mx/automation/IAutomationObject.html">IAutomationObject</a>):Object</div><div class="summaryTableDescription"> |
| |
| Returns a set of properties that identify the child within |
| this container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createAutomationIDPartWithRequiredProperties()" class="signatureLink">createAutomationIDPartWithRequiredProperties</a>(child:<a href="../../mx/automation/IAutomationObject.html">IAutomationObject</a>, properties:Array):Object</div><div class="summaryTableDescription"> |
| |
| Returns a set of properties as automation IDs that identify the child within |
| this container.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createReferenceOnParentDocument()" class="signatureLink">createReferenceOnParentDocument</a>(parentDocument:<a href="../../mx/core/IFlexDisplayObject.html">IFlexDisplayObject</a>):void</div><div class="summaryTableDescription"> |
| |
| Creates an id reference to this IUIComponent object |
| on its parent document object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#deleteReferenceOnParentDocument()" class="signatureLink">deleteReferenceOnParentDocument</a>(parentDocument:<a href="../../mx/core/IFlexDisplayObject.html">IFlexDisplayObject</a>):void</div><div class="summaryTableDescription"> |
| |
| Deletes the id reference to this IUIComponent object |
| on its parent document object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#determineTextFormatFromStyles()" class="signatureLink">determineTextFormatFromStyles</a>():<a href="../../mx/core/UITextFormat.html">UITextFormat</a></div><div class="summaryTableDescription"> |
| Returns a UITextFormat object corresponding to the text styles |
| for this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#dispatchEvent()" class="signatureLink">dispatchEvent</a>(event:Event):Boolean</div><div class="summaryTableDescription">[override] |
| Dispatches an event into the event flow.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#drawFocus()" class="signatureLink">drawFocus</a>(isFocused:Boolean):void</div><div class="summaryTableDescription"> |
| Shows or hides the focus indicator around this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#drawRoundRect()" class="signatureLink">drawRoundRect</a>(x:Number, y:Number, w:Number, h:Number, r:Object = null, c:Object = null, alpha:Object = null, rot:Object = null, gradient:String = null, ratios:Array = null, hole:Object = null):void</div><div class="summaryTableDescription"> |
| Programmatically draws a rectangle into this skin's Graphics object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effectFinished()" class="signatureLink">effectFinished</a>(effectInst:<a href="../../mx/effects/IEffectInstance.html">IEffectInstance</a>):void</div><div class="summaryTableDescription"> |
| Called by the effect instance when it stops playing on the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effectStarted()" class="signatureLink">effectStarted</a>(effectInst:<a href="../../mx/effects/IEffectInstance.html">IEffectInstance</a>):void</div><div class="summaryTableDescription"> |
| Called by the effect instance when it starts playing on the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#endEffectsStarted()" class="signatureLink">endEffectsStarted</a>():void</div><div class="summaryTableDescription"> |
| Ends all currently playing effects on the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#executeBindings()" class="signatureLink">executeBindings</a>(recurse:Boolean = false):void</div><div class="summaryTableDescription"> |
| Executes all the bindings for which the UIComponent object is the destination.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#finishPrint()" class="signatureLink">finishPrint</a>(obj:Object, target:<a href="../../mx/core/IFlexDisplayObject.html">IFlexDisplayObject</a>):void</div><div class="summaryTableDescription"> |
| Called after printing is complete.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#generateMXMLArray()" class="signatureLink">generateMXMLArray</a>(document:Object, data:Array, recursive:Boolean = true):Array</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#generateMXMLVector()" class="signatureLink">generateMXMLVector</a>(document:Object, data:Array, recursive:Boolean = true):*</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getAutomationChildAt()" class="signatureLink">getAutomationChildAt</a>(index:int):<a href="../../mx/automation/IAutomationObject.html">IAutomationObject</a></div><div class="summaryTableDescription"> |
| |
| Provides the automation object at the specified index.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getAutomationChildren()" class="signatureLink">getAutomationChildren</a>():Array</div><div class="summaryTableDescription"> |
| |
| Provides the automation object list .</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getBoundsXAtSize()" class="signatureLink">getBoundsXAtSize</a>(width:Number, height:Number, postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the x coordinate of the element's bounds at the specified element size.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getBoundsYAtSize()" class="signatureLink">getBoundsYAtSize</a>(width:Number, height:Number, postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the y coordinate of the element's bounds at the specified element size.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getClassStyleDeclarations()" class="signatureLink">getClassStyleDeclarations</a>():Array</div><div class="summaryTableDescription"> |
| Finds the type selectors for this UIComponent instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getConstraintValue()" class="signatureLink">getConstraintValue</a>(constraintName:String):*</div><div class="summaryTableDescription"> |
| Returns a layout constraint value, which is the same as |
| getting the constraint style for this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getExplicitOrMeasuredHeight()" class="signatureLink">getExplicitOrMeasuredHeight</a>():Number</div><div class="summaryTableDescription"> |
| A convenience method for determining whether to use the |
| explicit or measured height |
| </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getExplicitOrMeasuredWidth()" class="signatureLink">getExplicitOrMeasuredWidth</a>():Number</div><div class="summaryTableDescription"> |
| A convenience method for determining whether to use the |
| explicit or measured width |
| </div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getFocus()" class="signatureLink">getFocus</a>():InteractiveObject</div><div class="summaryTableDescription"> |
| Gets the object that currently has focus.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutBoundsHeight()" class="signatureLink">getLayoutBoundsHeight</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's layout height.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutBoundsWidth()" class="signatureLink">getLayoutBoundsWidth</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's layout width.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutBoundsX()" class="signatureLink">getLayoutBoundsX</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the x coordinate that the element uses to draw on screen.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutBoundsY()" class="signatureLink">getLayoutBoundsY</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the y coordinate that the element uses to draw on screen.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutMatrix()" class="signatureLink">getLayoutMatrix</a>():Matrix</div><div class="summaryTableDescription"> |
| |
| Returns the transform matrix that is used to calculate the component's |
| layout relative to its siblings.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getLayoutMatrix3D()" class="signatureLink">getLayoutMatrix3D</a>():Matrix3D</div><div class="summaryTableDescription"> |
| |
| Returns the layout transform Matrix3D for this element.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getMaxBoundsHeight()" class="signatureLink">getMaxBoundsHeight</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's maximum height.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getMaxBoundsWidth()" class="signatureLink">getMaxBoundsWidth</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's maximum width.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getMinBoundsHeight()" class="signatureLink">getMinBoundsHeight</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's minimum height.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getMinBoundsWidth()" class="signatureLink">getMinBoundsWidth</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's minimum width.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getPreferredBoundsHeight()" class="signatureLink">getPreferredBoundsHeight</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's preferred height.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getPreferredBoundsWidth()" class="signatureLink">getPreferredBoundsWidth</a>(postLayoutTransform:Boolean = true):Number</div><div class="summaryTableDescription"> |
| |
| Returns the element's preferred width.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getRepeaterItem()" class="signatureLink">getRepeaterItem</a>(whichRepeater:int = -1):Object</div><div class="summaryTableDescription"> |
| Returns the item in the dataProvider that was used |
| by the specified Repeater to produce this Repeater, or |
| null if this Repeater isn't repeated.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getStyle()" class="signatureLink">getStyle</a>(styleProp:String):*</div><div class="summaryTableDescription"> |
| Gets a style property that has been set anywhere in this |
| component's style lookup chain.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#getVisibleRect()" class="signatureLink">getVisibleRect</a>(targetParent:DisplayObject = null):Rectangle</div><div class="summaryTableDescription"> |
| Get the bounds of this object that are visible to the user |
| on the screen.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#globalToContent()" class="signatureLink">globalToContent</a>(point:Point):Point</div><div class="summaryTableDescription"> |
| Converts a Point object from global to content coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#hasCSSState()" class="signatureLink">hasCSSState</a>():Boolean</div><div class="summaryTableDescription"> |
| |
| Returns true if currentCSSState is not null.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#hasState()" class="signatureLink">hasState</a>(stateName:String):Boolean</div><div class="summaryTableDescription"> |
| Determines whether the specified state has been defined on this |
| UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#horizontalGradientMatrix()" class="signatureLink">horizontalGradientMatrix</a>(x:Number, y:Number, width:Number, height:Number):Matrix</div><div class="summaryTableDescription"> |
| Returns a box Matrix which can be passed to the |
| drawRoundRect() method |
| as the rot parameter when drawing a horizontal gradient.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#initialize()" class="signatureLink">initialize</a>():void</div><div class="summaryTableDescription"> |
| Initializes the internal structure of this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#initializeRepeaterArrays()" class="signatureLink">initializeRepeaterArrays</a>(parent:<a href="../../mx/core/IRepeaterClient.html">IRepeaterClient</a>):void</div><div class="summaryTableDescription"> |
| Initializes various properties which keep track of repeated instances |
| of this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateDisplayList()" class="signatureLink">invalidateDisplayList</a>():void</div><div class="summaryTableDescription"> |
| Marks a component so that its updateDisplayList() |
| method gets called during a later screen update.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateLayering()" class="signatureLink">invalidateLayering</a>():void</div><div class="summaryTableDescription"> |
| Called by a component's items to indicate that their depth |
| property has changed.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateLayoutDirection()" class="signatureLink">invalidateLayoutDirection</a>():void</div><div class="summaryTableDescription"> |
| |
| An element must call this method when its layoutDirection changes or |
| when its parent's layoutDirection changes.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateProperties()" class="signatureLink">invalidateProperties</a>():void</div><div class="summaryTableDescription"> |
| Marks a component so that its commitProperties() |
| method gets called during a later screen update.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateSize()" class="signatureLink">invalidateSize</a>():void</div><div class="summaryTableDescription"> |
| Marks a component so that its measure() |
| method gets called during a later screen update.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#localToContent()" class="signatureLink">localToContent</a>(point:Point):Point</div><div class="summaryTableDescription"> |
| Converts a Point object from local to content coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#matchesCSSState()" class="signatureLink">matchesCSSState</a>(cssState:String):Boolean</div><div class="summaryTableDescription"> |
| |
| Returns true if cssState matches currentCSSState.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#matchesCSSType()" class="signatureLink">matchesCSSType</a>(cssType:String):Boolean</div><div class="summaryTableDescription"> |
| |
| Determines whether this instance is the same as, or is a subclass of, |
| the given type.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#measureHTMLText()" class="signatureLink">measureHTMLText</a>(htmlText:String):TextLineMetrics</div><div class="summaryTableDescription"> |
| Measures the specified HTML text, which can contain HTML tags such |
| as <font> and <b>, |
| assuming that it is displayed |
| in a single-line UITextField using a UITextFormat |
| determined by the styles of this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#measureText()" class="signatureLink">measureText</a>(text:String):TextLineMetrics</div><div class="summaryTableDescription"> |
| Measures the specified text, assuming that it is displayed |
| in a single-line UITextField (or UIFTETextField) using a UITextFormat |
| determined by the styles of this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#move()" class="signatureLink">move</a>(x:Number, y:Number):void</div><div class="summaryTableDescription"> |
| Moves the component to a specified position within its parent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#notifyStyleChangeInChildren()" class="signatureLink">notifyStyleChangeInChildren</a>(styleProp:String, recursive:Boolean):void</div><div class="summaryTableDescription"> |
| Propagates style changes to the children.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#owns()" class="signatureLink">owns</a>(child:DisplayObject):Boolean</div><div class="summaryTableDescription"> |
| Returns true if the chain of owner properties |
| points from child to this UIComponent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#parentChanged()" class="signatureLink">parentChanged</a>(p:DisplayObjectContainer):void</div><div class="summaryTableDescription"> |
| Called by Flex when a UIComponent object is added to or removed from a parent.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#prepareToPrint()" class="signatureLink">prepareToPrint</a>(target:<a href="../../mx/core/IFlexDisplayObject.html">IFlexDisplayObject</a>):Object</div><div class="summaryTableDescription"> |
| Prepares an IFlexDisplayObject for printing.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#regenerateStyleCache()" class="signatureLink">regenerateStyleCache</a>(recursive:Boolean):void</div><div class="summaryTableDescription"> |
| Builds or rebuilds the CSS style cache for this component |
| and, if the recursive parameter is true, |
| for all descendants of this component as well.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#registerEffects()" class="signatureLink">registerEffects</a>(effects:Array):void</div><div class="summaryTableDescription"> |
| For each effect event, registers the EffectManager |
| as one of the event listeners.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#removeStyleClient()" class="signatureLink">removeStyleClient</a>(styleClient:<a href="../../mx/styles/IAdvancedStyleClient.html">IAdvancedStyleClient</a>):void</div><div class="summaryTableDescription"> |
| Removes a non-visual style client from this component instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#replayAutomatableEvent()" class="signatureLink">replayAutomatableEvent</a>(event:Event):Boolean</div><div class="summaryTableDescription"> |
| |
| Replays the specified event.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#resolveAutomationIDPart()" class="signatureLink">resolveAutomationIDPart</a>(criteria:Object):Array</div><div class="summaryTableDescription"> |
| |
| Resolves a child by using the id provided.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#resumeBackgroundProcessing()" class="signatureLink">resumeBackgroundProcessing</a>():void</div><div class="summaryTableDescription">[static] |
| Resumes the background processing of methods |
| queued by callLater(), after a call to |
| suspendBackgroundProcessing().</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setActualSize()" class="signatureLink">setActualSize</a>(w:Number, h:Number):void</div><div class="summaryTableDescription"> |
| Sizes the object.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setConstraintValue()" class="signatureLink">setConstraintValue</a>(constraintName:String, value:*):void</div><div class="summaryTableDescription"> |
| Sets a layout constraint value, which is the same as |
| setting the constraint style for this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setCurrentState()" class="signatureLink">setCurrentState</a>(stateName:String, playTransition:Boolean = true):void</div><div class="summaryTableDescription"> |
| Set the current state.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setFocus()" class="signatureLink">setFocus</a>():void</div><div class="summaryTableDescription"> |
| Sets the focus to this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setLayoutBoundsPosition()" class="signatureLink">setLayoutBoundsPosition</a>(x:Number, y:Number, postLayoutTransform:Boolean = true):void</div><div class="summaryTableDescription"> |
| |
| Sets the coordinates that the element uses to draw on screen.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setLayoutBoundsSize()" class="signatureLink">setLayoutBoundsSize</a>(width:Number, height:Number, postLayoutTransform:Boolean = true):void</div><div class="summaryTableDescription"> |
| |
| Sets the layout size of the element.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setLayoutMatrix()" class="signatureLink">setLayoutMatrix</a>(value:Matrix, invalidateLayout:Boolean):void</div><div class="summaryTableDescription"> |
| |
| Sets the transform Matrix that is used to calculate the component's layout |
| size and position relative to its siblings.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setLayoutMatrix3D()" class="signatureLink">setLayoutMatrix3D</a>(value:Matrix3D, invalidateLayout:Boolean):void</div><div class="summaryTableDescription"> |
| |
| Sets the transform Matrix3D that is used to calculate the component's layout |
| size and position relative to its siblings.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setMXMLDescriptor()" class="signatureLink">setMXMLDescriptor</a>(value:Array):void</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setMXMLProperties()" class="signatureLink">setMXMLProperties</a>(value:Array):void</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setStyle()" class="signatureLink">setStyle</a>(styleProp:String, newValue:*):void</div><div class="summaryTableDescription"> |
| Sets a style property on this component instance.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setVisible()" class="signatureLink">setVisible</a>(value:Boolean, noEvent:Boolean = false):void</div><div class="summaryTableDescription"> |
| Called when the visible property changes.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#styleChanged()" class="signatureLink">styleChanged</a>(styleProp:String):void</div><div class="summaryTableDescription"> |
| Detects changes to style properties.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#stylesInitialized()" class="signatureLink">stylesInitialized</a>():void</div><div class="summaryTableDescription"> |
| Flex calls the stylesInitialized() method when |
| the styles for a component are first initialized.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#suspendBackgroundProcessing()" class="signatureLink">suspendBackgroundProcessing</a>():void</div><div class="summaryTableDescription">[static] |
| Blocks the background processing of methods |
| queued by callLater(), |
| until resumeBackgroundProcessing() is called.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/FlexSprite.html#toString()" class="signatureLink">toString</a>():String</div><div class="summaryTableDescription">[override] |
| Returns a string indicating the location of this object |
| within the hierarchy of DisplayObjects in the Application.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/FlexSprite.html">FlexSprite</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#transformAround()" class="signatureLink">transformAround</a>(transformCenter:Vector3D, scale:Vector3D = null, rotation:Vector3D = null, translation:Vector3D = null, postLayoutScale:Vector3D = null, postLayoutRotation:Vector3D = null, postLayoutTranslation:Vector3D = null, invalidateLayout:Boolean = true):void</div><div class="summaryTableDescription"> |
| A utility method to update the rotation, scale, and translation of the |
| transform while keeping a particular point, specified in the component's |
| own coordinate space, fixed in the parent's coordinate space.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#transformPointToParent()" class="signatureLink">transformPointToParent</a>(localPosition:Vector3D, position:Vector3D, postLayoutPosition:Vector3D):void</div><div class="summaryTableDescription"> |
| A utility method to transform a point specified in the local |
| coordinates of this object to its location in the object's parent's |
| coordinates.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#validateDisplayList()" class="signatureLink">validateDisplayList</a>():void</div><div class="summaryTableDescription"> |
| |
| Validates the position and size of children and draws other |
| visuals.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#validateNow()" class="signatureLink">validateNow</a>():void</div><div class="summaryTableDescription"> |
| Validate and update the properties and layout of this object |
| and redraw it, if necessary.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#validateProperties()" class="signatureLink">validateProperties</a>():void</div><div class="summaryTableDescription"> |
| Used by layout logic to validate the properties of a component |
| by calling the commitProperties() method.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#validateSize()" class="signatureLink">validateSize</a>(recursive:Boolean = false):void</div><div class="summaryTableDescription"> |
| |
| Validates the measured size of the component |
| If the LayoutManager.invalidateSize() method is called with |
| this ILayoutManagerClient, then the validateSize() method |
| is called when it's time to do measurements.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#validationResultHandler()" class="signatureLink">validationResultHandler</a>(event:<a href="../../mx/events/ValidationResultEvent.html">ValidationResultEvent</a>):void</div><div class="summaryTableDescription"> |
| Handles both the valid and invalid events from a |
| validator assigned to this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#verticalGradientMatrix()" class="signatureLink">verticalGradientMatrix</a>(x:Number, y:Number, width:Number, height:Number):Matrix</div><div class="summaryTableDescription"> |
| Returns a box Matrix which can be passed to drawRoundRect() |
| as the rot parameter when drawing a vertical gradient.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="methodSummary"></a><a name="protectedMethodSummary"></a><div class="summarySection"><div class="summaryTableTitle">Protected Methods </div><div class="showHideLinks"><div id="hideInheritedProtectedMethod" class="hideInheritedProtectedMethod"><a class="showHideLink" href="#protectedMethodSummary" onclick="javascript:setInheritedVisible(false,'ProtectedMethod');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Show Inherited Protected Methods</a></div><div id="showInheritedProtectedMethod" class="showInheritedProtectedMethod"><a class="showHideLink" href="#protectedMethodSummary" onclick="javascript:setInheritedVisible(true,'ProtectedMethod');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Protected Methods</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedProtectedMethod" id="summaryTableProtectedMethod"><tr><th> </th><th colspan="2">Method</th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#addMXMLChildren()" class="signatureLink">addMXMLChildren</a>(comps:Array):void</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#adjustFocusRect()" class="signatureLink">adjustFocusRect</a>(obj:DisplayObject = null):void</div><div class="summaryTableDescription"> |
| Adjust the focus rectangle.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#applyComputedMatrix()" class="signatureLink">applyComputedMatrix</a>():void</div><div class="summaryTableDescription"> |
| Commits the computed matrix built from the combination of the layout |
| matrix and the transform offsets to the flash displayObject's transform.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#attachOverlay()" class="signatureLink">attachOverlay</a>():void</div><div class="summaryTableDescription"> |
| This is an internal method used by the Flex framework |
| to support the Dissolve effect.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#canSkipMeasurement()" class="signatureLink">canSkipMeasurement</a>():Boolean</div><div class="summaryTableDescription"> |
| Determines if the call to the measure() method can be skipped.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#childrenCreated()" class="signatureLink">childrenCreated</a>():void</div><div class="summaryTableDescription"> |
| Performs any final processing after child objects are created.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#commitProperties()" class="signatureLink">commitProperties</a>():void</div><div class="summaryTableDescription"> |
| Processes the properties set on the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createChildren()" class="signatureLink">createChildren</a>():void</div><div class="summaryTableDescription"> |
| Create child objects of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createInFontContext()" class="signatureLink">createInFontContext</a>(classObj:Class):Object</div><div class="summaryTableDescription"> |
| Creates a new object using a context |
| based on the embedded font being used.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#createInModuleContext()" class="signatureLink">createInModuleContext</a>(moduleFactory:<a href="../../mx/core/IFlexModuleFactory.html">IFlexModuleFactory</a>, className:String):Object</div><div class="summaryTableDescription"> |
| Creates the object using a given moduleFactory.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#dispatchPropertyChangeEvent()" class="signatureLink">dispatchPropertyChangeEvent</a>(prop:String, oldValue:*, value:*):void</div><div class="summaryTableDescription"> |
| Helper method for dispatching a PropertyChangeEvent |
| when a property is updated.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#focusInHandler()" class="signatureLink">focusInHandler</a>(event:FocusEvent):void</div><div class="summaryTableDescription"> |
| The event handler called when a UIComponent object gets focus.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#focusOutHandler()" class="signatureLink">focusOutHandler</a>(event:FocusEvent):void</div><div class="summaryTableDescription"> |
| The event handler called when a UIComponent object loses focus.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#generateMXMLAttributes()" class="signatureLink">generateMXMLAttributes</a>(data:Array):void</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#generateMXMLInstances()" class="signatureLink">generateMXMLInstances</a>(document:Object, data:Array, recursive:Boolean = true):void</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#generateMXMLObject()" class="signatureLink">generateMXMLObject</a>(document:Object, data:Array):Object</div><div class="summaryTableDescription"></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#initAdvancedLayoutFeatures()" class="signatureLink">initAdvancedLayoutFeatures</a>():void</div><div class="summaryTableDescription"> |
| Initializes the implementation and storage of some of the less frequently |
| used advanced layout features of a component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#initializationComplete()" class="signatureLink">initializationComplete</a>():void</div><div class="summaryTableDescription"> |
| Finalizes the initialization of this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#initializeAccessibility()" class="signatureLink">initializeAccessibility</a>():void</div><div class="summaryTableDescription"> |
| Initializes this component's accessibility code.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#invalidateParentSizeAndDisplayList()" class="signatureLink">invalidateParentSizeAndDisplayList</a>():void</div><div class="summaryTableDescription"> |
| Helper method to invalidate parent size and display list if |
| this object affects its layout (includeInLayout is true).</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#isOurFocus()" class="signatureLink">isOurFocus</a>(target:DisplayObject):Boolean</div><div class="summaryTableDescription"> |
| Typically overridden by components containing UITextField objects, |
| where the UITextField object gets focus.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#keyDownHandler()" class="signatureLink">keyDownHandler</a>(event:KeyboardEvent):void</div><div class="summaryTableDescription"> |
| The event handler called for a keyDown event.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#keyUpHandler()" class="signatureLink">keyUpHandler</a>(event:KeyboardEvent):void</div><div class="summaryTableDescription"> |
| The event handler called for a keyUp event.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#measure()" class="signatureLink">measure</a>():void</div><div class="summaryTableDescription"> |
| Calculates the default size, and optionally the default minimum size, |
| of the component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#resourcesChanged()" class="signatureLink">resourcesChanged</a>():void</div><div class="summaryTableDescription"> |
| This method is called when a UIComponent is constructed, |
| and again whenever the ResourceManager dispatches |
| a "change" Event to indicate |
| that the localized resources have changed in some way.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#setStretchXY()" class="signatureLink">setStretchXY</a>(stretchX:Number, stretchY:Number):void</div><div class="summaryTableDescription"> |
| Specifies a transform stretch factor in the horizontal and vertical direction.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#stateChanged()" class="signatureLink">stateChanged</a>(oldState:String, newState:String, recursive:Boolean):void</div><div class="summaryTableDescription"> |
| This method is called when a state changes to check whether |
| state-specific styles apply to this component.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedProtectedMethod"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#updateDisplayList()" class="signatureLink">updateDisplayList</a>(unscaledWidth:Number, unscaledHeight:Number):void</div><div class="summaryTableDescription"> |
| Draws the object and/or sizes and positions its children.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="eventSummary"></a><div class="summarySection"><div class="summaryTableTitle">Events</div><div class="showHideLinks"><div id="hideInheritedEvent" class="hideInheritedEvent"><a class="showHideLink" href="#eventSummary" onclick="javascript:setInheritedVisible(false,'Event');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Events</a></div><div id="showInheritedEvent" class="showInheritedEvent"><a class="showHideLink" href="#eventSummary" onclick="javascript:setInheritedVisible(true,'Event');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Events</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedEvent" id="summaryTableEvent"><tr><th> </th><th colspan="2">Event</th><th> Summary </th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:add" class="signatureLink">add</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the component is added to a container as a content child by using the addChild(), addChildAt(), addElement(), or addElementAt() method.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:creationComplete" class="signatureLink">creationComplete</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the component has finished its construction, property processing, measuring, layout, and drawing.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:currentStateChange" class="signatureLink">currentStateChange</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after the view state has changed.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:currentStateChanging" class="signatureLink">currentStateChanging</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after the currentState property changes, but before the view state changes.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragComplete" class="signatureLink">dragComplete</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the drag initiator (the component that is the source of the data being dragged) when the drag operation completes, either when you drop the dragged data onto a drop target or when you end the drag-and-drop operation without performing a drop.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragDrop" class="signatureLink">dragDrop</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the drop target when the user releases the mouse over it.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragEnter" class="signatureLink">dragEnter</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by a component when the user moves the mouse over the component during a drag operation.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragExit" class="signatureLink">dragExit</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when the user drags outside the component, but does not drop the data onto the target.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragOver" class="signatureLink">dragOver</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by a component when the user moves the mouse while over the component during a drag operation.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:dragStart" class="signatureLink">dragStart</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the drag initiator when starting a drag operation.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:effectEnd" class="signatureLink">effectEnd</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after an effect ends.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:effectStart" class="signatureLink">effectStart</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched just before an effect starts.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:effectStop" class="signatureLink">effectStop</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after an effect is stopped, which happens only by a call to stop() on the effect.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:enterState" class="signatureLink">enterState</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after the component has entered a view state.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:exitState" class="signatureLink">exitState</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched just before the component exits a view state.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:hide" class="signatureLink">hide</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when an object's state changes from visible to invisible.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:initialize" class="signatureLink">initialize</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the component has finished its construction and has all initialization properties set.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:invalid" class="signatureLink">invalid</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when a component is monitored by a Validator and the validation failed.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:mouseDownOutside" class="signatureLink">mouseDownOutside</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched from a component opened using the PopUpManager when the user clicks outside it.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:mouseWheelOutside" class="signatureLink">mouseWheelOutside</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched from a component opened using the PopUpManager when the user scrolls the mouse wheel outside it.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:move" class="signatureLink">move</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the object has moved.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:preinitialize" class="signatureLink">preinitialize</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched at the beginning of the component initialization sequence.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:remove" class="signatureLink">remove</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the component is removed from a container as a content child by using the removeChild(), removeChildAt(), removeElement(), or removeElementAt() method.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:resize" class="signatureLink">resize</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when the component is resized.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:show" class="signatureLink">show</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when an object's state changes from invisible to visible.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:stateChangeComplete" class="signatureLink">stateChangeComplete</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched after the component has entered a new state and any state transition animation to that state has finished playing.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:stateChangeInterrupted" class="signatureLink">stateChangeInterrupted</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when a component interrupts a transition to its current state in order to switch to a new state.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipCreate" class="signatureLink">toolTipCreate</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when it is time to create a ToolTip.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipEnd" class="signatureLink">toolTipEnd</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when its ToolTip has been hidden and is to be discarded soon.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipHide" class="signatureLink">toolTipHide</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when its ToolTip is about to be hidden.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipShow" class="signatureLink">toolTipShow</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when its ToolTip is about to be shown.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipShown" class="signatureLink">toolTipShown</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by the component when its ToolTip has been shown.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:toolTipStart" class="signatureLink">toolTipStart</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched by a component whose toolTip property is set, as soon as the user moves the mouse over it.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:touchInteractionEnd" class="signatureLink">touchInteractionEnd</a></div></td><td class="summaryTableDescription summaryTableCol">A non-cancellable event, dispatched by a component when it is done responding to a touch interaction user gesture.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:touchInteractionStart" class="signatureLink">touchInteractionStart</a></div></td><td class="summaryTableDescription summaryTableCol">A non-cancellable event, dispatched by a component when it starts responding to a touch interaction user gesture.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:touchInteractionStarting" class="signatureLink">touchInteractionStarting</a></div></td><td class="summaryTableDescription summaryTableCol">A cancellable event, dispatched by a component in an attempt to respond to a touch interaction user gesture.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:updateComplete" class="signatureLink">updateComplete</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when an object has had its commitProperties(), measure(), and updateDisplayList() methods called (if needed).</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:valid" class="signatureLink">valid</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when a component is monitored by a Validator and the validation succeeded.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEvent"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#event:valueCommit" class="signatureLink">valueCommit</a></div></td><td class="summaryTableDescription summaryTableCol">Dispatched when values are changed programmatically or by user interaction.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="styleSummary"></a><div class="summarySection"><div class="summaryTableTitle">Styles</div><div class="showHideLinks"><div id="hideInheritedStyle" class="hideInheritedStyle"><a class="showHideLink" href="#styleSummary" onclick="javascript:setInheritedVisible(false,'Style');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Styles</a></div><div id="showInheritedStyle" class="showInheritedStyle"><a class="showHideLink" href="#styleSummary" onclick="javascript:setInheritedVisible(true,'Style');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Styles</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable " id="summaryTableStyle"><tr><th> </th><th colspan="2">Style</th><th> Description </th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:alignmentBaseline"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">alignmentBaseline</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Specifies the baseline to which the dominant baseline aligns. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.alignmentBaseline</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#alignmentBaseline" target="">flashx.textLayout.formats.ITextLayoutFormat.alignmentBaseline</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../spark/components/supportClasses/TextBase.html#style:backgroundAlpha" class="signatureLink">backgroundAlpha</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">CSS Inheritance: </span>no<br/>The alpha level of the color defined by the <code>backgroundColor</code> style.</td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../spark/components/supportClasses/TextBase.html#style:backgroundColor" class="signatureLink">backgroundColor</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>uint <span class="label">Format: </span>Color <span class="label">CSS Inheritance: </span>no<br/>The color of the background of the entire bounding rectangle of this component.</td><td class="summaryTableOwnerCol"><a href="../../spark/components/supportClasses/TextBase.html">TextBase</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:baseline" class="signatureLink">baseline</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The vertical distance in pixels from the top edge of the content area to the control's baseline position.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:baselineShift"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">baselineShift</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Object <span class="label">CSS Inheritance: </span>yes<br/> |
| Amount to shift the baseline. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.baselineShift.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#baselineShift" target="">flashx.textLayout.formats.ITextLayoutFormat.baselineShift</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:bottom" class="signatureLink">bottom</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The vertical distance, in pixels, from the bottom edge of the component to the bottom edge of its parent container's content area.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:cffHinting"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">cffHinting</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The type of CFF hinting used for this text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.cffHinting.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#cffHinting" target="">flashx.textLayout.formats.ITextLayoutFormat.cffHinting</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:chromeColor" class="signatureLink">chromeColor</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>uint <span class="label">Format: </span>Color <span class="label">CSS Inheritance: </span>yes <span class="label">Theme: </span>spark<br/>The main color for a component.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:color"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">color</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>uint <span class="label">Format: </span>Color <span class="label">CSS Inheritance: </span>yes<br/> |
| Color of the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.color.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style color, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style color.</b> |
| </p> |
| The default value is<code> 0x000000</code>.<p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#color" target="">flashx.textLayout.formats.ITextLayoutFormat.color</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:color" target="">spark.components.supportClasses.StyleableTextField.color</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:color" target="">spark.components.supportClasses.StyleableStageText.color</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:digitCase"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">digitCase</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The type of digit case used for this text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.digitCase.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#digitCase" target="">flashx.textLayout.formats.ITextLayoutFormat.digitCase</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:digitWidth"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">digitWidth</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Type of digit width used for this text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.digitWidth.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#digitWidth" target="">flashx.textLayout.formats.ITextLayoutFormat.digitWidth</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:direction"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">direction</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Specifies the default bidirectional embedding level of the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.direction.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#direction" target="">flashx.textLayout.formats.ITextLayoutFormat.direction</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:dominantBaseline"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">dominantBaseline</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Specifies which element baseline snaps to the <code>alignmentBaseline</code> to |
| determine the vertical position of the element on the line. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.dominantBaseline.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#dominantBaseline" target="">flashx.textLayout.formats.ITextLayoutFormat.dominantBaseline</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:errorColor" class="signatureLink">errorColor</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>uint <span class="label">Format: </span>Color <span class="label">CSS Inheritance: </span>yes<br/>Color of the component highlight when validation fails.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:focusBlendMode" class="signatureLink">focusBlendMode</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>Blend mode used by the focus rectangle.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:focusSkin" class="signatureLink">focusSkin</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Class <span class="label">CSS Inheritance: </span>no<br/>Skin used to draw the focus rectangle.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:focusThickness" class="signatureLink">focusThickness</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>no<br/>Thickness, in pixels, of the focus rectangle outline.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:fontFamily"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">fontFamily</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The name of the font to use, or a comma-separated list of font names. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.fontFamily.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style fontFamily, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style fontFamily.</b> |
| </p> |
| |
| <p>The default value for the Spark theme is <code>Arial</code>. |
| The default value for the Mobile theme is <code>_sans</code>.</p> |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#fontFamily" target="">flashx.textLayout.formats.ITextLayoutFormat.fontFamily</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:fontFamily" target="">spark.components.supportClasses.StyleableStageText.fontFamily</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:fontFamily" target="">spark.components.supportClasses.StyleableTextField.fontFamily</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:fontLookup"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">fontLookup</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Font lookup to use. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.fontLookup</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#fontLookup" target="">flashx.textLayout.formats.ITextLayoutFormat.fontLookup</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:fontSize"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">fontSize</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>yes<br/> |
| Height of the text, in pixels. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.fontSize</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style fontSize, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style fontSize.</b> |
| </p> |
| |
| <p>The default value for the Spark theme is <code>12</code>. |
| The default value for the Mobile theme is <code>24</code>.</p> |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#fontSize" target="">flashx.textLayout.formats.ITextLayoutFormat.fontSize</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:fontSize" target="">spark.components.supportClasses.StyleableStageText.fontSize</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:fontSize" target="">spark.components.supportClasses.StyleableTextField.fontSize</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:fontStyle"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">fontStyle</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Determines whether the text is italic font. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.fontStyle</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style fontStyle, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style fontStyle.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#fontStyle" target="">flashx.textLayout.formats.ITextLayoutFormat.fontStyle</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:fontStyle" target="">spark.components.supportClasses.StyleableStageText.fontStyle</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:fontStyle" target="">spark.components.supportClasses.StyleableTextField.fontStyle</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:fontWeight"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">fontWeight</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Determines whether the text is boldface. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.fontWeight</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style fontWeight, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style fontWeight.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#fontWeight" target="">flashx.textLayout.formats.ITextLayoutFormat.fontWeight</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:fontWeight" target="">spark.components.supportClasses.StyleableStageText.fontWeight</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:fontWeight" target="">spark.components.supportClasses.StyleableTextField.fontWeight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:horizontalCenter" class="signatureLink">horizontalCenter</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The horizontal distance in pixels from the center of the component's content area to the center of the component.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:interactionMode" class="signatureLink">interactionMode</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/>The primary interaction mode for this component.<p><span class="label">See also</span></p><div class="seeAlso"><a href="../../mx/core/InteractionMode.html#MOUSE" target="">mx.core.InteractionMode.MOUSE</a><br/><a href="../../mx/core/InteractionMode.html#TOUCH" target="">mx.core.InteractionMode.TOUCH</a></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:justificationRule"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">justificationRule</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Rule used to justify text in a paragraph. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.justificationRule</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#justificationRule" target="">flashx.textLayout.formats.ITextLayoutFormat.justificationRule</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:justificationStyle"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">justificationStyle</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The style used for justification of the paragraph. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.justificationStyle</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#justificationStyle" target="">flashx.textLayout.formats.ITextLayoutFormat.justificationStyle</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:kerning"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">kerning</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The style used for justification of the paragraph. |
| |
| <p>Kerning is enabled by default for Spark components, but is disabled by default for MX components. |
| Spark components interpret <code>default</code> as <code>auto</code>, |
| while MX components interpret <code>default</code> as <code>false</code>.</p> |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.kerning</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#kerning" target="">flashx.textLayout.formats.ITextLayoutFormat.kerning</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:layoutDirection" class="signatureLink">layoutDirection</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/>Specifies the desired layout direction of a component.<p><span class="label">See also</span></p><div class="seeAlso">MXFTEText.css<br/><a href="../../mx/core/ILayoutDirectionElement.html" target="">mx.core.ILayoutDirectionElement</a><br/><a href="../../mx/core/LayoutDirection.html" target="">mx.core.LayoutDirection</a></div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:leading"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">leading</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>yes <span class="label">Theme: </span>mobile<br/> |
| Additional vertical space between lines of text. |
| <p> |
| <b>For the Spark theme, this is not supported.</b> See <code>lineHeight</code>.</p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableStageText Style fontWeight |
| and if using StyleableStageText, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../spark/components/supportClasses/StyleableTextField.html#style:leading" target="">spark.components.supportClasses.StyleableTextField.leading</a><br/><a href="Label.html#style:lineHeight" target="">lineHeight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:left" class="signatureLink">left</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The horizontal distance, in pixels, from the left edge of the component to the left edge of its parent container's content area.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:letterSpacing"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">letterSpacing</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">CSS Inheritance: </span>yes <span class="label">Theme: </span>mobile<br/> |
| The number of additional pixels to appear between each character. |
| |
| <p> |
| <b>For the Spark theme, this is not supported.</b> See <code>trackingLeft</code> |
| and <code>trackingRight</code>.</p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField.letterSpacing |
| and if using StyleableStageText, this is not supported.</b> |
| </p> |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../spark/components/supportClasses/StyleableTextField.html#style:letterSpacing" target="">spark.components.supportClasses.StyleableTextField.letterSpacing</a><br/><a href="Label.html#style:trackingLeft" target="">trackingLeft</a><br/><a href="Label.html#style:trackingRight" target="">trackingRight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:ligatureLevel"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">ligatureLevel</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Controls which of the ligatures that are defined in the font may be used in the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.ligatureLevel</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#ligatureLevel" target="">flashx.textLayout.formats.ITextLayoutFormat.ligatureLevel</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:lineBreak"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">lineBreak</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/> |
| Controls word wrapping within the container. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.blockProgression.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#lineBreak" target="">flashx.textLayout.formats.ITextLayoutFormat.lineBreak</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:lineHeight"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">lineHeight</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Object <span class="label">CSS Inheritance: </span>yes<br/> |
| Leading controls for the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.lineHeight.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> See <code>leading</code>.</p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#lineHeight" target="">flashx.textLayout.formats.ITextLayoutFormat.lineHeight</a><br/><a href="Label.html#style:leading" target="">leading</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:lineThrough"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">lineThrough</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Boolean <span class="label">CSS Inheritance: </span>yes<br/> |
| If true, applies strikethrough, a line drawn through the middle of the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.lineThrough</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#lineThrough" target="">flashx.textLayout.formats.ITextLayoutFormat.lineThrough</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:locale"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">locale</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The locale of the text. |
| Controls case transformations and shaping. |
| Uses standard locale identifiers as described in Unicode Technical Standard #35. |
| For example "en", "en_US" and "en-US" are all English, "ja" is Japanese. |
| |
| <p>The default value is undefined. This property inherits its value from an ancestor; if |
| still undefined, it inherits from the global <code>locale</code> style. |
| During the application initialization, if the global <code>locale</code> style is undefined, |
| then the default value is set to "en".</p> |
| |
| <p>When using the Spark formatters and globalization classes, you can set this style on the |
| root application to the value of the <code>LocaleID.DEFAULT</code> constant. |
| Those classes will then use the client operating system's international preferences.</p> |
| |
| The default value is<code> undefined</code>.<p><span class="label">See also</span></p><div class="seeAlso"><a href="http://www.unicode.org/reports/tr35/" target="mm_external">http://www.unicode.org/reports/tr35/</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:paddingBottom"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">paddingBottom</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>no<br/> |
| Bottom inset, in pixels. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.paddingBottom.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#paddingBottom" target="">flashx.textLayout.formats.ITextLayoutFormat.paddingBottom</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:paddingLeft"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">paddingLeft</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>no<br/> |
| Left inset, in pixels. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.paddingLeft.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#paddingLeft" target="">flashx.textLayout.formats.ITextLayoutFormat.paddingLeft</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:paddingRight"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">paddingRight</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>no<br/> |
| Right inset, in pixels. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.paddingRight.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#paddingRight" target="">flashx.textLayout.formats.ITextLayoutFormat.paddingRight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:paddingTop"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">paddingTop</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">Format: </span>Length <span class="label">CSS Inheritance: </span>no<br/> |
| Top inset, in pixels. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.paddingRight.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#paddingRight" target="">flashx.textLayout.formats.ITextLayoutFormat.paddingRight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:renderingMode"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">renderingMode</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The rendering mode used for this text which applies only to embedded fonts. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.renderingMode</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#renderingMode" target="">flashx.textLayout.formats.ITextLayoutFormat.renderingMode</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:right" class="signatureLink">right</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The horizontal distance, in pixels, from the right edge of the component to the right edge of its parent container's content area.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:showErrorSkin" class="signatureLink">showErrorSkin</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Boolean <span class="label">CSS Inheritance: </span>yes<br/>Show the error border or skin when this component is invalid.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:showErrorTip" class="signatureLink">showErrorTip</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Boolean <span class="label">CSS Inheritance: </span>yes<br/>Show the error tip when this component is invalid and the user rolls over it.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:textAlign"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">textAlign</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Alignment of text within a container. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.textAlign</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style textAlign, |
| and if using StyleableStageText, |
| see spark.components.supportClasses.StyleableStageText Style textAlign.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#textAlign" target="">flashx.textLayout.formats.ITextLayoutFormat.textAlign</a><br/><a href="../../spark/components/supportClasses/StyleableStageText.html#style:textAlign" target="">spark.components.supportClasses.StyleableStageText.textAlign</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:textAlign" target="">spark.components.supportClasses.StyleableTextField.textAlign</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:textAlignLast"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">textAlignLast</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Alignment of the last line in the paragraph relative to the container in justified text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.textAlignLast</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#textAlignLast" target="">flashx.textLayout.formats.ITextLayoutFormat.textAlignLast</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:textAlpha"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">textAlpha</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Number <span class="label">CSS Inheritance: </span>yes<br/> |
| Alpha (transparency) value for the text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.textAlpha</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#textAlpha" target="">flashx.textLayout.formats.ITextLayoutFormat.textAlpha</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:textDecoration"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">textDecoration</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Determines whether the text is underlined. |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.textDecoration</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, if using StyleableTextField, |
| see spark.components.supportClasses.StyleableTextField Style textDecoration, |
| and if using StyleableStageText, this is not supported.</b> |
| </p> |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#textDecoration" target="">flashx.textLayout.formats.ITextLayoutFormat.textDecoration</a><br/><a href="../../spark/components/supportClasses/StyleableTextField.html#style:textDecoration" target="">spark.components.supportClasses.StyleableTextField.textDecoration</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:textJustify"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">textJustify</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| Specifies options for justifying text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.textJustify</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#textJustify" target="">flashx.textLayout.formats.ITextLayoutFormat.textJustify</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:themeColor" class="signatureLink">themeColor</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>uint <span class="label">Format: </span>Color <span class="label">CSS Inheritance: </span>yes <span class="label">Theme: </span>halo<br/>Theme color of a component.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:top" class="signatureLink">top</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The vertical distance, in pixels, from the top edge of the component to the top edge of its parent container's content area.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:trackingLeft"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">trackingLeft</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Object <span class="label">CSS Inheritance: </span>yes<br/> |
| The amount of tracking (manual kerning) to be applied to the left of each character. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.trackingLeft</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#trackingLeft" target="">flashx.textLayout.formats.ITextLayoutFormat.trackingLeft</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:trackingRight"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">trackingRight</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>Object <span class="label">CSS Inheritance: </span>yes<br/> |
| The amount of tracking (manual kerning) to be applied to the right of each character. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.trackingRight</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#trackingRight" target="">flashx.textLayout.formats.ITextLayoutFormat.trackingRight</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:typographicCase"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">typographicCase</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>yes<br/> |
| The type of typographic case used for this text. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.typographicCase</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#typographicCase" target="">flashx.textLayout.formats.ITextLayoutFormat.typographicCase</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class=""><td class="summaryTablePaddingCol"><a name="style:verticalAlign"></a> </td><td class="summaryTableInheritanceCol"> </td><td class="summaryTableSignatureCol"><div class="summarySignature"><span class="signatureLink">verticalAlign</span></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/> |
| Vertical alignment or justification. |
| |
| <p> |
| <b>For the Spark theme, see |
| flashx.textLayout.formats.ITextLayoutFormat.verticalAlign.</b> |
| </p> |
| <p> |
| <b>For the Mobile theme, this is not supported.</b> |
| </p> |
| |
| <p><span class="label">See also</span></p><div class="seeAlso"><a href="../../flashx/textLayout/formats/ITextLayoutFormat.html#verticalAlign" target="">flashx.textLayout.formats.ITextLayoutFormat.verticalAlign</a></div></td><td class="summaryTableOwnerCol">Label</td></tr><tr class="hideInheritedStyle"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#style:verticalCenter" class="signatureLink">verticalCenter</a></div></td><td class="summaryTableDescription"><span class="label">Type: </span>String <span class="label">CSS Inheritance: </span>no<br/>The vertical distance in pixels from the center of the component's content area to the center of the component.</td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="effectSummary"></a><div class="summarySection"><div class="summaryTableTitle">Effects</div><div class="showHideLinks"><div id="hideInheritedEffect" class="hideInheritedEffect"><a class="showHideLink" href="#effectSummary" onclick="javascript:setInheritedVisible(false,'Effect');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Effects</a></div><div id="showInheritedEffect" class="showInheritedEffect"><a class="showHideLink" href="#effectSummary" onclick="javascript:setInheritedVisible(true,'Effect');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Effects</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedEffect" id="summaryTableEffect"><tr><th> </th><th colspan="2">Effect</th><th> Description </th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:addedEffect" class="signatureLink">addedEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>added<br/> |
| Played when the component is added as a child to a Container. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:creationCompleteEffect" class="signatureLink">creationCompleteEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>creationComplete<br/> |
| Played when the component is created. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:focusInEffect" class="signatureLink">focusInEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>focusIn<br/> |
| Played when the component gains keyboard focus. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:focusOutEffect" class="signatureLink">focusOutEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>focusOut<br/> |
| Played when the component loses keyboard focus. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:hideEffect" class="signatureLink">hideEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>hide<br/> |
| Played when the component becomes invisible. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:mouseDownEffect" class="signatureLink">mouseDownEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>mouseDown<br/> |
| Played when the user presses the mouse button while over the component. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:mouseUpEffect" class="signatureLink">mouseUpEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>mouseUp<br/> |
| Played when the user releases the mouse button while over the component. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:moveEffect" class="signatureLink">moveEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>move<br/> |
| Played when the component is moved. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:removedEffect" class="signatureLink">removedEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>removed<br/> |
| Played when the component is removed from a Container. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:resizeEffect" class="signatureLink">resizeEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>resize<br/> |
| Played when the component is resized. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:rollOutEffect" class="signatureLink">rollOutEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>rollOut<br/> |
| Played when the user rolls the mouse so it is no longer over the component. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:rollOverEffect" class="signatureLink">rollOverEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>rollOver<br/> |
| Played when the user rolls the mouse over the component. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedEffect"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><div class="summarySignature"><a href="../../mx/core/UIComponent.html#effect:showEffect" class="signatureLink">showEffect</a></div></td><td class="summaryTableDescription"><span class="label"> Triggering Event: </span>show<br/> |
| Played when the component becomes visible. |
| |
| </td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><a name="constantSummary"></a><div class="summarySection"><div class="summaryTableTitle">Public Constants</div><div class="showHideLinks"><div id="hideInheritedConstant" class="hideInheritedConstant"><a class="showHideLink" href="#constantSummary" onclick="javascript:setInheritedVisible(false,'Constant');"><img class="showHideLinkImage" src="../../images/expanded.gif"> Hide Inherited Public Constants</a></div><div id="showInheritedConstant" class="showInheritedConstant"><a class="showHideLink" href="#constantSummary" onclick="javascript:setInheritedVisible(true,'Constant');"><img class="showHideLinkImage" src="../../images/collapsed.gif"> Show Inherited Public Constants</a></div></div><table cellspacing="0" cellpadding="3" class="summaryTable hideInheritedConstant" id="summaryTableConstant"><tr><th> </th><th colspan="2">Constant</th><th class="summaryTableOwnerCol">Defined By</th></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MAX_HEIGHT" class="signatureLink">DEFAULT_MAX_HEIGHT</a> : Number = 10000<div class="summaryTableDescription">[static] |
| The default value for the maxHeight property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MAX_WIDTH" class="signatureLink">DEFAULT_MAX_WIDTH</a> : Number = 10000<div class="summaryTableDescription">[static] |
| The default value for the maxWidth property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MEASURED_HEIGHT" class="signatureLink">DEFAULT_MEASURED_HEIGHT</a> : Number = 22<div class="summaryTableDescription">[static] |
| The default value for the measuredHeight property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MEASURED_MIN_HEIGHT" class="signatureLink">DEFAULT_MEASURED_MIN_HEIGHT</a> : Number = 22<div class="summaryTableDescription">[static] |
| The default value for the measuredMinHeight property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MEASURED_MIN_WIDTH" class="signatureLink">DEFAULT_MEASURED_MIN_WIDTH</a> : Number = 40<div class="summaryTableDescription">[static] |
| The default value for the measuredMinWidth property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr><tr class="hideInheritedConstant"><td class="summaryTablePaddingCol"> </td><td class="summaryTableInheritanceCol"><img src="../../images/inheritedSummary.gif" alt="Inherited" title="Inherited" class="inheritedSummaryImage"></td><td class="summaryTableSignatureCol"><a href="../../mx/core/UIComponent.html#DEFAULT_MEASURED_WIDTH" class="signatureLink">DEFAULT_MEASURED_WIDTH</a> : Number = 160<div class="summaryTableDescription">[static] |
| The default value for the measuredWidth property.</div></td><td class="summaryTableOwnerCol"><a href="../../mx/core/UIComponent.html">UIComponent</a></td></tr></table></div><script language="javascript" type="text/javascript"><!-- |
| showHideInherited(); |
| --></script><div class="MainContent"><a name="constructorDetail"></a><div class="detailSectionHeader">Constructor Detail</div><a name="Label()"></a><table class="detailHeader" cellpadding="0" cellspacing="0"><tr><td class="detailHeaderName">Label</td><td class="detailHeaderParens">()</td><td class="detailHeaderType">Constructor</td></tr></table><div class="detailBody"><code>public function Label()</code><p></p><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Language Version : </b></td><td>ActionScript 3.0</td></tr></table><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Product Version : </b></td><td>Flex 4</td></tr></table><table cellpadding="0" cellspacing="0" border="0"><tr><td style="white-space:nowrap" valign="top"><b> Runtime Versions : </b></td><td>Flash Player 10, AIR 1.5</td></tr></table><p></p><p> |
| Constructor. |
| |
| </p></div><a name="includeExamplesSummary"></a><div class="detailSectionHeader">Examples</div><div class="exampleHeader">LabelExample.mxml</div><div class="detailBody"><div class="listing"><pre><?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --> |
| <!-- LabelExample.mxml --> |
| <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"> |
| |
| <s:Panel title="Label Example" |
| width="75%" height="75%" |
| horizontalCenter="0" verticalCenter="0"> |
| <s:Group left="10" right="10" top="10" bottom="10"> |
| <s:Label x="0" y="0" height="75" width="75"> |
| <s:text>This is a Label control.</s:text> |
| </s:Label> |
| |
| <s:Group x="100" y="0"> |
| <s:Label height="100" width="75" paddingTop="5" paddingLeft="5" paddingRight="5" paddingBottom="5"> |
| <s:text>This is a Spark Label control with a border drawn by a Rect.</s:text> |
| </s:Label> |
| <s:Rect width="100%" height="100%"> |
| <s:stroke> |
| <s:SolidColorStroke color="red"/> |
| </s:stroke> |
| </s:Rect> |
| </s:Group> |
| </s:Group> |
| </s:Panel> |
| |
| </s:Application> |
| </pre></div><script language="javascript" type="text/javascript"><!-- AC_FL_RunContent( "src", "examples/LabelExample", "width", "100%", |
| "height","400px", "salign", "TL", "id", "example1", "quality", "high", "bgcolor", "", "name", |
| "example1", "flashvars","", "allowScriptAccess","sameDomain", "type", |
| "application/x-shockwave-flash","pluginspage", "http://www.macromedia.com/go/getflashplayer" ); --></script></div><br/><br/><hr><br/><p></p><center class="copyright"><footer>The Apache Software Foundation</footer><br/>Wed Nov 15 2017, 09:50 AM +01:00 </center></div></body></html><!--The Apache Software Foundation<br/>Wed Nov 15 2017, 09:50 AM +01:00 --> |