(仅限 AIR)
mx.controls
public class FileSystemList
继承FileSystemList Inheritance List Inheritance ListBase Inheritance ScrollControlBase Inheritance UIComponent Inheritance FlexSprite Inheritance Sprite Inheritance DisplayObjectContainer Inheritance InteractiveObject Inheritance DisplayObject Inheritance EventDispatcher Inheritance Object

运行时版本: AIR 1.1

使用 FileSystemList 控件,可以列表格式显示单个文件系统目录的内容。

要更改显示的数据,需要设置 directory 属性,而无需使用 dataProvider 属性。随后,控件将自动通过枚举该目录的内容填充 dataProvider 属性。您不应亲自设置 dataProvider

您需要将 directory 属性设置为 File 实例,如以下示例所示:

<mx:FileSystemList directory="{File.desktopDirectory}"/>

您可以设置 enumerationMode 属性,以指定是显示文件、子目录还是同时显示两者。有三种方式可以同时显示两者:目录优先、文件优先或两者混合。

您可以设置 extensions 属性以筛选显示的项目,从而仅显示具有指定扩展名的文件。showHidden 确定控件是否显示操作系统通常隐藏的文件和子目录。您可以指定另外一个 filterFunction 执行自定义筛选,并指定 nameCompareFunction 执行自定义排序。

由于 AIR 不支持文件系统通知,因此,在创建、删除、移动或重命名文件或子目录时不会自动刷新此控件;也就是说,它可以显示文件系统的过期视图。但是,您可以调用 refresh() 重新枚举当前的 directory。例如,当您执行了某个文件操作并已知此操作将导致控件的视图过期时,或者当用户取消激活或重新激活您的应用程序时,您可以选择执行此操作。

您可以使用 showIcons 属性显示或隐藏图标,使用 showExtensions 属性显示或隐藏文件扩展名。

该控件提供了 findItem()findIndex() 两种方法,您可以使用这两种方法搜索显示的文件和子目录,以查找具有指定 nativePath 的文件或子目录。

该控件还提供了 selectedPathselectedPaths 两个属性,工作原理与 selectedItemselectedItems 或者 selectedIndexselectedIndices 类似,但允许您通过 nativePath 字符串指定选择。如果需要显示已预先选择了特定项目的目录,它们将非常有用。因为在这种情况下,您还没有在控件枚举目录时控件将创建的 File 项目,并且不知道其索引将是什么。

该控件允许用户使用鼠标或键盘导航到其它目录。用户可以尝试使用下列方法更改目录:双击子目录;选中子目录后按 Enter 键或 Ctrl-Down;在控件不显示 COMPUTER 目录时按 Ctrl-Up;在存在要导航回的“上一个”目录时按 Ctrl-Left;在存在要导航到的“下一个”目录时按 Ctrl-Right。如果用户试图更改正在显示的目录,则该控件将调度可取消的 directoryChanging 事件。如果没有通过调用 event.preventDefault() 取消此事件,则该控件将显示新目录的内容,并且 directory 属性将发生更改。无论 directory 属性在何时由于任何原因发生更改,控件都会调度 directoryChange 事件通知您。

为了支持控件进行“向上”和“向下”导航,FileSystemList 提供了 canNavigateUpcanNavigateDown 属性,以及 navigateUp()navigateDown() 方法。还有一个 navigateTo(),可导航到任意目录。

该控件可跟踪用户曾经导航到的目录,以便支持控件进行“后退”和“前进”导航。有关详细信息,请参见 backHistoryforwardHistorycanNavigateBackcanNavigateForward 属性,以及 navigateBack()navigateForward() 方法。

注意:针对每个项目显示的图标都是通用文件和目录图标,您可以使用 fileIcondirectoryIcon 样式设置它们。Flex 的基于列表的控件当前支持仅显示嵌入的图标,但不支持在运行时读取的图标。因此,FileSystemList 中不显示操作系统中显示的实际文件系统图标,即使可以通过 File 的 icon 属性在 AIR 中访问它们。

MXML 语法expanded隐藏 MXML 语法

The <mx:FileSystemList> tag inherits all of the tag attributes of its superclass and adds the following tag attributes:

  <mx:FileSystemList
    Properties
    directory="null"
    enumerationMode="directoriesFirst"
    extensions="null"
    filterFunction="null"
    nameCompareFunction="null"
    selectedPath="null"
    selectedPaths="null"
    showExtensions="true"
    showHidden="false"
    showIcons="true"
 
    Styles
    directoryIcon="TreeNodeIcon"
    fileIcon="TreeNodeIcon"
 
    Events
    directoryChange="No default"
    directoryChanging="No default"
    fileChoose="No default"
  />
  

另请参见

flash.filesystem.File


公共属性
 属性定义方
 InheritedaccessibilityProperties : AccessibilityProperties
此显示对象的当前辅助功能选项。
DisplayObject
 InheritedactiveEffects : Array
[只读 (read-only)] 组件上当前播放的效果列表,如 EffectInstance 实例的 Array。
UIComponent
 InheritedallowDragSelection : Boolean = false
一个标志,指示是否启用拖动选择。
ListBase
 InheritedallowMultipleSelection : Boolean
一个标志,指示是否允许您同时选择多个项目。
ListBase
 Inheritedalpha : Number
指示指定对象的 Alpha 透明度值。
DisplayObject
 InheritedautomationDelegate : Object
处理自动化相关功能的委托对象。
UIComponent
 InheritedautomationName : String
可用作此对象的标识符的名称。
UIComponent
 InheritedautomationTabularData : Object
[只读 (read-only)] IAutomationTabularData 接口的实现,可用于检索数据。
UIComponent
 InheritedautomationValue : Array
[只读 (read-only)] 此值通常对应于对象的经渲染的外观,当对象在应用中以可视方式显示时,此值使标识符与该对象相关联。
UIComponent
  backHistory : Array
[只读 (read-only)] 一个 File 对象 Array,表示用户可以向后导航到的目录。
FileSystemList
 InheritedbaselinePosition : Number
[只读 (read-only)] 组件第一行文本的基线的 y 坐标。
UIComponent
 InheritedblendMode : String
BlendMode 类中的一个值,用于指定要使用的混合模式。
DisplayObject
 InheritedblendShader : Shader
[只写] 设置用于混合前景和背景的着色器。
DisplayObject
 InheritedborderMetrics : EdgeMetrics
[只读 (read-only)] 返回 EdgeMetrics 对象,它具有四个属性:left、top、right 和 bottom。
ScrollControlBase
 InheritedbuttonMode : Boolean
指定此 sprite 的按钮模式。
Sprite
 InheritedcacheAsBitmap : Boolean
如果设置为 true,则 Flash Player 或 Adobe AIR 将缓存显示对象的内部位图表示形式。
DisplayObject
 InheritedcacheHeuristic : Boolean
[只写] 供 Flex 使用,表示建议为对象实施位图缓存。
UIComponent
 InheritedcachePolicy : String
指定此对象的位图缓存策略。
UIComponent
  canNavigateBack : Boolean
[只读 (read-only)] 一个标志,如果历史记录列表中至少存在一个可供用户向后导航的目录,则为 true。
FileSystemList
  canNavigateDown : Boolean
[只读 (read-only)] 一个标志,如果用户可向下导航至所选目录,则为 true。
FileSystemList
  canNavigateForward : Boolean
[只读 (read-only)] 一个标志,如果历史记录列表中至少存在一个可供用户向前导航的目录,则为 true。
FileSystemList
  canNavigateUp : Boolean
[只读 (read-only)] 一个标志,如果用户可向上导航至父级目录,则为 true。
FileSystemList
 InheritedclassName : String
[只读 (read-only)] 此实例的类的名称,如“Button”。
UIComponent
 InheritedcolumnCount : int
在 TileList 控件中显示的列数,或在 HorizontalList 控件中显示的项目数。
ListBase
 InheritedcolumnWidth : Number
控件中列的宽度。
ListBase
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
 InheritedcontentMouseX : Number
[只读 (read-only)] 返回鼠标在内容坐标系中的 x 位置。
UIComponent
 InheritedcontentMouseY : Number
[只读 (read-only)] 返回内容坐标系中鼠标的 y 位置。
UIComponent
 InheritedcontextMenu : NativeMenu
指定与此对象相关联的上下文菜单。
InteractiveObject
 InheritedcurrentState : String
组件的当前视图状态。
UIComponent
 InheritedcursorManager : ICursorManager
[只读 (read-only)] 获取控制此组件及其同级组件的光标的 CursorManager。
UIComponent
 Inheriteddata : Object
将此组件用作项目渲染器或项目编辑器时,此组件应呈现的数据提供程序中的项目。
ListBase
 InheriteddataProvider : Object
要查看的数据集。
ListBase
 InheriteddataTipField : String
数据提供程序项目中作为数据提示显示的字段名称。
ListBase
 InheriteddataTipFunction : Function
用户提供的函数,在各个项目上运行以确定其数据提示。
ListBase
 Inheriteddescriptor : UIComponentDescriptor
引用 UIComponentDescriptor(如果有),过去曾通过 createComponentFromDescriptor() 方法使用它来创建此 UIComponent 实例。
UIComponent
  directory : File
此控件显示内容所在的目录。
FileSystemList
 Inheriteddocument : Object
引用与此 UIComponent 相关联的文档对象。
UIComponent
 InheriteddoubleClickEnabled : Boolean
指定 UIComponent 对象是否接收 doubleClick 事件。
UIComponent
 InheriteddragEnabled : Boolean
一个标志,指示是否可以将项目拖出此控件并放到其它控件上。
ListBase
 InheriteddragMoveEnabled : Boolean
一个标志,指示在拖放操作过程中是否可以移动控件中的项目,而不只是从控件中复制这些项目。
ListBase
 InheriteddropEnabled : Boolean
一个标志,指示是否可以将所拖动的项目放到此控件上。
ListBase
 InheriteddropTarget : DisplayObject
[只读 (read-only)] 指定拖动 sprite 时经过的显示对象,或放置 sprite 的显示对象。
Sprite
 Inheritededitable : Boolean = false
一个标志,指示用户能否编辑数据提供程序中的项目。
List
 InheritededitedItemPosition : Object
正在编辑的数据提供程序项目的项目渲染器的列索引和行索引(如果有)。
List
 InheritededitedItemRenderer : IListItemRenderer
[只读 (read-only)] 对当前正在编辑的项目所属的 DataGrid 控件中项目渲染器的引用。
List
 InheritededitorDataField : String = "text"
项目编辑器的属性名称,其中包含列表项目的新数据。
List
 InheritededitorHeightOffset : Number = 0
项目编辑器相对于项目渲染器大小的高度(以像素为单位)。
List
 InheritededitorUsesEnterKey : Boolean = false
指示项目编辑器是否使用 Enter 键的标志。
List
 InheritededitorWidthOffset : Number = 0
项目编辑器相对于项目渲染器大小的宽度(以像素为单位)。
List
 InheritededitorXOffset : Number = 0
项目编辑器左上角相对于项目左上角的 x 位置(以像素为单位)。
List
 InheritededitorYOffset : Number = 0
项目编辑器左上角相对于项目左上角的 y 位置(以像素为单位)。
List
 Inheritedenabled : Boolean
组件是否可以接受用户交互。
UIComponent
  enumerationMode : String
一个 String,指定此控件是仅显示文件、仅显示子目录,还是两者均显示。
FileSystemList
 InheritederrorString : String
当验证程序监视组件并且验证失败时,组件的错误提示中将显示的文本。
UIComponent
 InheritedexplicitHeight : Number
指定该组件在组件坐标中显式高度(以像素为单位)的数字。
UIComponent
 InheritedexplicitMaxHeight : Number
布局过程中父级要考虑的组件最大建议高度。
UIComponent
 InheritedexplicitMaxWidth : Number
布局过程中父级要考虑的组件最大建议宽度。
UIComponent
 InheritedexplicitMinHeight : Number
布局过程中父级要考虑的组件最小建议高度。
UIComponent
 InheritedexplicitMinWidth : Number
布局过程中父级要考虑的组件最小建议宽度。
UIComponent
 InheritedexplicitWidth : Number
指定该组件在组件坐标中显式宽度(以像素为单位)的数字。
UIComponent
  extensions : Array
扩展名的 Array,指定在此控件中可以显示哪些文件。
FileSystemList
  filterFunction : Function
在应用 enumerationMode 和扩展名属性后,可用来执行其它筛选以确定显示及隐藏哪些文件和子目录的回调函数。
FileSystemList
 Inheritedfilters : Array
包含当前与显示对象关联的每个滤镜对象的索引数组。
DisplayObject
 InheritedflexContextMenu : IFlexContextMenu
此 UIComponent 的上下文菜单。
UIComponent
 InheritedfocusEnabled : Boolean
指示切换到此组件时,是否可以接收焦点。
UIComponent
 InheritedfocusManager : IFocusManager
获取控制此组件及其同级组件的焦点的 FocusManager。
UIComponent
 InheritedfocusPane : Sprite
与此对象相关联的焦点窗格。
UIComponent
 InheritedfocusRect : Object
指定此对象是否显示焦点矩形。
InteractiveObject
  forwardHistory : Array
[只读 (read-only)] 一个 File 对象 Array,表示用户可以向前导航到的目录。
FileSystemList
 Inheritedgraphics : Graphics
[只读 (read-only)] 指定属于此 sprite 的 Graphics 对象,在此 sprite 中可执行矢量绘画命令。
Sprite
 Inheritedheight : Number
指定组件在父坐标中的高度的数字(以像素为单位)。
UIComponent
 InheritedhitArea : Sprite
指定一个 sprite 用作另一个 sprite 的点击区域。
Sprite
 InheritedhorizontalScrollPolicy : String
指示水平滚动条是始终启用、始终禁用还是自动根据传递到 setScrollBarProperties() 方法的参数进行更改的属性。
ScrollControlBase
 InheritedhorizontalScrollPosition : Number
内容与左边缘的偏移量。
ScrollControlBase
 InheritediconField : String
数据提供程序对象中字段的名称,该字段用于确定显示为图标的对象。
ListBase
 InheritediconFunction : Function
用户提供的函数,在每个项目上运行以确定其图标。
ListBase
 Inheritedid : String
组件 ID。
UIComponent
 InheritedimeMode : String
指定 IME(输入法编辑器)模式。
List
 InheritedincludeInLayout : Boolean
指定此组件是否包含在父容器的布局中。
UIComponent
 InheritedinheritingStyles : Object
此组件的继承样式链的开头内容。
UIComponent
 Inheritedinitialized : Boolean
一个标志,用于确定某个对象是否已通过布局的所有三个阶段:提交、测量和布局(假设每个阶段都是必需的)。
UIComponent
 InheritedinstanceIndex : int
[只读 (read-only)] 重复组件的索引。
UIComponent
 InheritedinstanceIndices : Array
一个 Array,包含从此 UIComponent 对象的父文档引用该对象所需的索引。
UIComponent
 InheritedisDocument : Boolean
[只读 (read-only)] 确定此 UIComponent 实例是否为文档对象,也就是说它是否位于 Flex 应用程序、MXML 组件或 ActionScript 组件层次结构的顶层。
UIComponent
 InheritedisPopUp : Boolean
PopUpManager 将其设置为 true 以指示已弹出该组件。
UIComponent
 InheriteditemEditor : IFactory
如果将可编辑属性设置为 true,则为用于控件的项目编辑器的类工厂。
List
 InheriteditemEditorInstance : IListItemRenderer
对项目编辑器的当前活动实例(如果有)的引用。
List
 InheriteditemRenderer : IFactory
控件的自定义项目渲染器。
ListBase
 InheritedlabelField : String
数据提供程序项目中作为标签显示的字段名称。
ListBase
 InheritedlabelFunction : Function
用户提供的函数,在每个项目上运行以确定其标签。
ListBase
 InheritedlistData : BaseListData
如果使用组件作为嵌入式项目渲染器或嵌入式项目编辑器,则 Flex 将使用 list 控件中的其它数据初始化组件的 listData 属性。
ListBase
 InheritedliveScrolling : Boolean = true
一个标志,指示移动滚动栏滑块时实时滚动视图,还是释放滑块后才更新视图。
ScrollControlBase
 InheritedloaderInfo : LoaderInfo
[只读 (read-only)] 返回一个 LoaderInfo 对象,其中包含加载此显示对象所属的文件的相关信息。
DisplayObject
 Inheritedmask : DisplayObject
调用显示对象被指定的 mask 对象遮罩。
DisplayObject
 InheritedmaxHeight : Number
布局过程中父级要考虑的组件最大建议高度。
UIComponent
 InheritedmaxHorizontalScrollPosition : Number
horizontalScrollPosition 属性的最大值。
ScrollControlBase
 InheritedmaxVerticalScrollPosition : Number
verticalScrollPosition 属性的最大值。
ScrollControlBase
 InheritedmaxWidth : Number
布局过程中父级要考虑的组件最大建议宽度。
UIComponent
 InheritedmeasuredHeight : Number
组件的默认高度(以像素为单位)。
UIComponent
 InheritedmeasuredMinHeight : Number
组件的默认最小高度(以像素为单位)。
UIComponent
 InheritedmeasuredMinWidth : Number
组件的默认最小宽度(以像素为单位)。
UIComponent
 InheritedmeasuredWidth : Number
组件的默认宽度(以像素为单位)。
UIComponent
 InheritedmenuSelectionMode : Boolean = false
一个标志,指示是否应使用菜单样式选择。
ListBase
 InheritedminHeight : Number
布局过程中父级要考虑的组件最小建议高度。
UIComponent
 InheritedminWidth : Number
布局过程中父级要考虑的组件最小建议宽度。
UIComponent
 InheritedmoduleFactory : IFlexModuleFactory
用于在正确的 SWF 上下文中创建 TextFields 的 moduleFactory。
UIComponent
 InheritedmouseChildren : Boolean
确定对象的子项是否支持鼠标。
DisplayObjectContainer
 InheritedmouseEnabled : Boolean
指定此对象是否接收鼠标消息。
InteractiveObject
 InheritedmouseFocusEnabled : Boolean
单击时是否可接收焦点。
UIComponent
 InheritedmouseX : Number
[只读 (read-only)] 指示鼠标位置的 x 坐标,以像素为单位。
DisplayObject
 InheritedmouseY : Number
[只读 (read-only)] 指示鼠标位置的 y 坐标,以像素为单位。
DisplayObject
 Inheritedname : String
指示 DisplayObject 的实例名称。
DisplayObject
  nameCompareFunction : Function
可用于更改文件和子目录名称的比较方式以生成排序顺序的回调函数。
FileSystemList
 InheritednestLevel : int
此对象在所属关系层次结构中的深度。
UIComponent
 InheritednonInheritingStyles : Object
此组件的非继承样式链的开头内容。
UIComponent
 InheritednullItemRenderer : IFactory
控件的自定义项目渲染器。
ListBase
 InheritednumAutomationChildren : int
[只读 (read-only)] 此容器包含的自动化子项数。
UIComponent
 InheritednumChildren : int
[只读 (read-only)] 返回此对象的子项数目。
DisplayObjectContainer
 InheritedoffscreenExtraRowsOrColumns : int
项目渲染器的额外行或列的目标数量,供在控件布局中使用。
ListBase
 InheritedopaqueBackground : Object
指定显示对象是否由于具有某种背景颜色而不透明。
DisplayObject
 Inheritedowner : DisplayObjectContainer
此 UIComponent 的所有者。
UIComponent
 Inheritedparent : DisplayObjectContainer
[只读 (read-only)] 此组件的父容器或组件。
UIComponent
 InheritedparentApplication : Object
[只读 (read-only)] 引用包含此 UIComponent 实例的 Application 对象。
UIComponent
 InheritedparentDocument : Object
[只读 (read-only)] 引用此 UIComponent 的父文档对象。
UIComponent
 InheritedpercentHeight : Number
以组件父项大小百分比的方式指定组件高度的数字。
UIComponent
 InheritedpercentWidth : Number
以组件父项大小百分比形式指定其宽度的数字。
UIComponent
 InheritedprocessedDescriptors : Boolean
临时或延迟子项创建操作后设置为 true,具体取决于发生对象。
UIComponent
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
 InheritedrendererIsEditor : Boolean = false
指定项目渲染器是否同时也是项目编辑器。
List
 Inheritedrepeater : IRepeater
[只读 (read-only)] 对生成此 UIComponent 的父文档中 Repeater 对象的引用。
UIComponent
 InheritedrepeaterIndex : int
[只读 (read-only)] 项目在生成此 UIComponent 的 Repeater 数据提供程序中的索引。
UIComponent
 InheritedrepeaterIndices : Array
一个 Array,包含项目在生成此 UIComponent 的父文档的 Repeater 数据提供程序中的索引。
UIComponent
 Inheritedrepeaters : Array
一个 Array,包含对生成此 UIComponent 的父文档中 Repeater 对象的引用。
UIComponent
 Inheritedroot : DisplayObject
[只读 (read-only)] 对于加载的 SWF 文件中的显示对象,root 属性是此 SWF 文件所表示的显示列表树结构部分中的顶级显示对象。
DisplayObject
 Inheritedrotation : Number
指示 DisplayObject 实例距其原始方向的旋转程度,以度为单位。
DisplayObject
 InheritedrotationX : Number
指示 DisplayObject 实例相对于 3D 父容器距离其原始方向的 x 轴旋转(以度为单位)。
DisplayObject
 InheritedrotationY : Number
指示 DisplayObject 实例相对于 3D 父容器距离其原始方向的 y 轴旋转(以度为单位)。
DisplayObject
 InheritedrotationZ : Number
指示 DisplayObject 实例相对于 3D 父容器距离其原始方向的 z 轴旋转(以度为单位)。
DisplayObject
 InheritedrowCount : int
要显示的行数。
ListBase
 InheritedrowHeight : Number
行高(以像素为单位)。
ListBase
 Inheritedscale9Grid : Rectangle
当前有效的缩放网格。
DisplayObject
 InheritedscaleX : Number
用于指定水平缩放系数的数字。
UIComponent
 InheritedscaleY : Number
用于指定垂直缩放系数的数字。
UIComponent
 InheritedscaleZ : Number
指示从对象的注册点开始应用的对象的深度缩放比例(百分比)。
DisplayObject
 Inheritedscreen : Rectangle
[只读 (read-only)] 返回包含此对象的基本绘图表面大小和位置的对象。
UIComponent
 InheritedscrollRect : Rectangle
显示对象的滚动矩形范围。
DisplayObject
 InheritedscrollTipFunction : Function
将要显示的字符串作为 ScrollTip 计算的函数。
ScrollControlBase
 Inheritedselectable : Boolean
一个标志,指示列表是否将所选项目显示为选中状态。
ListBase
 InheritedselectedIndex : int
所选项目的数据提供程序中的索引。
ListBase
 InheritedselectedIndices : Array
数据提供程序中所选项目的索引的数组。
ListBase
 InheritedselectedItem : Object
对数据提供程序中所选项目的引用。
ListBase
 InheritedselectedItems : Array
对数据提供程序中所选项目的引用的数组。
ListBase
  selectedPath : String
表示所选子目录或文件的 File 项目的 nativePath;如果未选定任何项目,则为 null。
FileSystemList
  selectedPaths : Array
表示所选子目录和文件的 File 项目的 nativePath 字符串 Array。
FileSystemList
 InheritedshowDataTips : Boolean
一个标志,指示是否为行中的文本显示数据提示。
ListBase
  showExtensions : Boolean
一个标志,指定是否显示文件名称中的扩展名。
FileSystemList
  showHidden : Boolean
一个标志,指定是否显示操作系统视为隐藏的文件和目录。
FileSystemList
  showIcons : Boolean
一个标志,指定在文件名称之前显示图标。
FileSystemList
 InheritedshowInAutomationHierarchy : Boolean
用于确定自动化对象是否显示在自动化层次中的标志。
UIComponent
 InheritedshowScrollTips : Boolean = false
一个标志,指示拖动滚动滑块时是否应在其旁边显示工具提示。
ScrollControlBase
 InheritedsoundTransform : SoundTransform
控制此 sprite 中的声音。
Sprite
 Inheritedstage : Stage
[只读 (read-only)] 显示对象的舞台。
DisplayObject
 Inheritedstates : Array
为此组件定义的视图状态。
UIComponent
 InheritedstyleDeclaration : CSSStyleDeclaration
存储此对象的内嵌继承样式。
UIComponent
 InheritedstyleName : Object
此组件使用的类样式。
UIComponent
 InheritedsystemManager : ISystemManager
返回此组件使用的 SystemManager 对象。
UIComponent
 InheritedtabChildren : Boolean
确定对象的子项是否支持 Tab 键。
DisplayObjectContainer
 InheritedtabEnabled : Boolean
指定此对象是否遵循 Tab 键顺序。
InteractiveObject
 InheritedtabIndex : int
指定 SWF 文件中的对象按 Tab 键顺序排列。
InteractiveObject
 InheritedtextSnapshot : TextSnapshot
[只读 (read-only)] 返回此 DisplayObjectContainer 实例的 TextSnapshot 对象。
DisplayObjectContainer
 InheritedtoolTip : String
要在 ToolTip 中显示的文本。
UIComponent
 Inheritedtransform : Transform
一个对象,具有与显示对象的矩阵、颜色转换和像素范围有关的属性。
DisplayObject
 Inheritedtransitions : Array
一个 Transition 对象 Array,其中的每个 Transition 对象都定义一组效果,用于在视图状态发生更改时播放。
UIComponent
 InheritedtweeningProperties : Array
当前在此对象上进行补间的属性数组。
UIComponent
 Inheriteduid : String
对象的唯一标识符。
UIComponent
 InheritedupdateCompletePendingFlag : Boolean
一个标志,确定某个对象是否已通过所有三个阶段的布局验证(假设需要通过所有验证)。
UIComponent
 InheriteduseHandCursor : Boolean
布尔值,指示当鼠标滑过其 buttonMode 属性设置为 true 的 sprite 时是否显示手指形(手形光标)。
Sprite
 InheritedvalidationSubField : String
供验证程序用来将子字段与此组件相关联。
UIComponent
 Inheritedvalue : Object
[只读 (read-only)] 所选项目,或者所选项目的数据或标签字段。
ListBase
 InheritedvariableRowHeight : Boolean
一个标志,指示各行是否可以采用不同的高度。
ListBase
 InheritedverticalScrollPolicy : String
指示垂直滚动条是始终启用、始终禁用还是自动根据传递到 setScrollBarProperties() 方法的参数进行更改的属性。
ScrollControlBase
 InheritedverticalScrollPosition : Number
顶边到内容的偏移量。
ScrollControlBase
 InheritedviewMetrics : EdgeMetrics
[只读 (read-only)] 考虑滚动条(如果可见)的 EdgeMetrics 对象。
ScrollControlBase
 Inheritedvisible : Boolean
控制此 UIComponent 的可见性。
UIComponent
 Inheritedwidth : Number
指定组件在父坐标中的宽度的数字(以像素为单位)。
UIComponent
 InheritedwordWrap : Boolean
一个标志,指示行中的文本是否应自动换行。
ListBase
 Inheritedx : Number
指定组件在其父容器中的水平位置(以像素为单位)的数字。
UIComponent
 Inheritedy : Number
指定组件在其父容器中的垂直位置(以像素为单位)的数字。
UIComponent
 Inheritedz : Number
指示 DisplayObject 实例相对于 3D 父容器沿 z 轴的 z 坐标位置。
DisplayObject
受保护的属性
 属性定义方
 InheritedactualCollection : ICollectionView
通常存储于运行数据更改效果时使用的 collection 中的值副本。
ListBase
 InheritedactualIterator : IViewCursor
通常存储于运行数据更改效果时使用的 iterator 中的值副本。
ListBase
 InheritedallowItemSizeChangeNotification : Boolean
[只写] 如果设置为 false,则渲染器无法使 List 的大小失效.
ListBase
 InheritedanchorBookmark : CursorBookmark
作为锚点的项目的书签。
ListBase
 InheritedanchorIndex : int = -1
作为选择锚点的数据提供程序中项目的偏移量。
ListBase
 Inheritedborder : IFlexDisplayObject
边框对象。
ScrollControlBase
 InheritedcachedItemsChangeEffect : IEffect = null
当控件的数据提供程序中发生更改时播放的效果,通过 itemsChangeEffect 样式设置。
ListBase
 InheritedcaretBookmark : CursorBookmark
尖号下方项目的书签。
ListBase
 InheritedcaretIndex : int = -1
作为选择尖号点的数据提供程序中项目的偏移量。
ListBase
 InheritedcaretIndicator : Sprite
包含图形的 DisplayObject,该图形指示哪个渲染器是尖号。
ListBase
 InheritedcaretItemRenderer : IListItemRenderer
尖号下方项目的渲染器。
ListBase
 InheritedcaretUID : String
尖号下方项目的 UID。
ListBase
 Inheritedcollection : ICollectionView
用于提供数据提供程序的 ICollectionView。
ListBase
 InheriteddataEffectCompleted : Boolean = false
一个标志,指示数据更改效果已完成。
ListBase
 InheriteddataItemWrappersByRenderer : Dictionary
将项目渲染器映射到 ItemWrappers(用于提供其数据)的 dictionary。
ListBase
 InheriteddefaultColumnCount : int = 4
要显示的默认列数。
ListBase
 InheriteddefaultRowCount : int = 4
要显示的默认行数。
ListBase
 InheriteddragImage : IUIComponent
[只读 (read-only)] 获取可显示拖放操作中的可视效果的类实例。
ListBase
 InheriteddragImageOffsets : Point
[只读 (read-only)] 获取所拖动图像在拖放后的偏移量。
ListBase
 InheritedexplicitColumnCount : int = -1
显式设置 columnCount 属性时需要的列计数。
ListBase
 InheritedexplicitColumnWidth : Number
显式设置 columnWidth 时需要的列宽。
ListBase
 InheritedexplicitRowCount : int = -1
显式设置 rowCount 时需要的行计数。
ListBase
 InheritedexplicitRowHeight : Number
显式设置 rowHeight 时需要的行高。
ListBase
 InheritedfactoryMap : Dictionary
项目渲染器基于工厂的映射。
ListBase
 InheritedfreeItemRenderers : Array
闲置项目渲染器的堆栈。
ListBase
 InheritedfreeItemRenderersByFactory : Dictionary
空闲项目渲染器基于工厂的映射。
ListBase
 InheritedhighlightIndicator : Sprite
包含图形的 DisplayObject,用以指示加亮哪个渲染器。
ListBase
 InheritedhighlightItemRenderer : IListItemRenderer
当前滚动到尖号上方或下方的渲染器。
ListBase
 InheritedhighlightUID : String
当前滚动到尖号上方或下方的项目的 UID。
ListBase
 InheritedhorizontalScrollBar : ScrollBar
水平滚动条。
ScrollControlBase
 InheriteditemsNeedMeasurement : Boolean = true
一个标志,指示是否需要计算 columnWidth 和 rowHeight 属性。
ListBase
 InheriteditemsSizeChanged : Boolean = false
一个标志,指示渲染器的大小可能已更改。
ListBase
 Inheritediterator : IViewCursor
主 IViewCursor,用于从数据提供程序中获取项目并将这些项目传递到渲染器。
ListBase
 InheritediteratorValid : Boolean = true
一个标志,指示发生页面错误和迭代器位置无效(未放置在所显示的最上方项目处)。
ListBase
 InheritedkeySelectionPending : Boolean = false
一个标志,指示键盘选择是否由于页面错误而中断。
ListBase
 InheritedlastDropIndex : int
最近计算出的索引,这是拖动项目在放置目标中的添加位置。
ListBase
 InheritedlastSeekPending : ListBaseSeekPending
导致页面错误的最新一次搜寻。
ListBase
 InheritedlistContent : ListBaseContentHolder
一个内部显示对象,是所有项目渲染器、选择内容、亮显指示符以及其它支持图形的父级。
ListBase
 InheritedlistContentStyleFilters : Object
[只读 (read-only)] 从 ListBase 传递到 listContent 的一组样式。
ListBase
 InheritedlistItems : Array
[只读 (read-only)] 一个由数组组成的数组,其中包含用于呈现每个数据提供程序项目的 itemRenderer 实例。
ListBase
 InheritedmaskShape : Shape
遮罩。
ScrollControlBase
 InheritedmeasuringObjects : Dictionary
工厂设置的度量对象的缓存
List
 InheritedmodifiedCollectionView : ModifiedCollectionView
集合视图,用于暂时保留上次的数据提供程序状态,以方便运行数据更改效果。
ListBase
 InheritedoffscreenExtraColumns : int = 0
用于控件布局的项目渲染器的额外列的目标数量。
ListBase
 InheritedoffscreenExtraColumnsLeft : int = 0
当前位于最左侧可视列左侧的屏幕外的列数。
ListBase
 InheritedoffscreenExtraColumnsRight : int = 0
当前位于最右侧可视列右侧的屏幕外的列数。
ListBase
 InheritedoffscreenExtraRows : int = 0
要用于控件布局的项目渲染器中额外行的目标数量。
ListBase
 InheritedoffscreenExtraRowsBottom : int = 0
当前位于底部可视渲染器下方的屏幕外的项目数。
ListBase
 InheritedoffscreenExtraRowsOrColumnsChanged : Boolean = false
一个标志,指示屏幕外的行数或列数可能已更改。
ListBase
 InheritedoffscreenExtraRowsTop : int = 0
当前位于最顶部可见行上方的屏幕外的行数。
ListBase
 InheritedrendererChanged : Boolean = false
一个标志,指示渲染器已更改。
ListBase
 InheritedreservedItemRenderers : Object
当前闲置但近期可能会用到的项目渲染器的哈希映射。
ListBase
 InheritedresourceManager : IResourceManager
[只读 (read-only)] 引用管理所有应用程序本地化资源的对象。
UIComponent
 InheritedrowInfo : Array
[只读 (read-only)] ListRowInfo 对象数组,这些对象用于缓存行高和 listItems 中行的其它跟踪信息。
ListBase
 InheritedrowMap : Object
项目渲染器与其各自 ListRowInfo 对象的哈希映射。
ListBase
 InheritedrunDataEffectNextUpdate : Boolean = false
一个标志,指示下次更新显示时是否应该启动数据效果。
ListBase
 InheritedrunningDataEffect : Boolean = false
一个标志,指示当前是否正在运行数据更改效果.
ListBase
 InheritedscrollAreaChanged : Boolean
一个标志,指示滚动区域随滚动条的出现或消失进行更改。
ScrollControlBase
 InheritedselectedData : Object
用于跟踪当前所选项目的 ListBaseSelectionData 对象的哈希表。
ListBase
 InheritedselectionIndicators : Object
所选指示符的哈希表。
ListBase
 InheritedselectionLayer : Sprite
listContent 中的图层,用于绘制所有选择内容和加亮指示符。
ListBase
 InheritedselectionTweens : Object
所选内容补间的哈希表。
ListBase
 InheritedshowCaret : Boolean
一个标志,指示是否显示尖号。
ListBase
 InheritedunconstrainedRenderers : Dictionary
不受列表布局算法影响的项目渲染器的哈希映射.
ListBase
 InheritedunscaledHeight : Number
[只读 (read-only)] 用于确定组件的未缩放高度的简便方法。
UIComponent
 InheritedunscaledWidth : Number
[只读 (read-only)] 用于确定组件的未缩放宽度的简便方法。组件的绘图和子布局的所有设置均应在以此宽度为宽的矩形边框中完成,还应将此宽度作为参数传递到 updateDisplayList() 中。
UIComponent
 InheritedverticalScrollBar : ScrollBar
垂直滚动条。
ScrollControlBase
 InheritedvisibleData : Object
[只读 (read-only)] 视图中当前使用的数据提供程序项目渲染器的哈希表。
ListBase
 InheritedwordWrapChanged : Boolean = false
一个标志,指示自上次更新显示列表后 wordWrap 属性值是否已更改。
ListBase
公共方法
 方法定义方
  
构造函数。
FileSystemList
 Inherited
将一个 DisplayObject 子实例添加到该 DisplayObjectContainer 实例中。
DisplayObjectContainer
 Inherited
将一个 DisplayObject 子实例添加到该 DisplayObjectContainer 实例中。
DisplayObjectContainer
 Inherited
如果正在运行数据更改效果,则添加项目渲染器。
ListBase
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
使用 EventDispatcher 对象注册事件侦听器对象,以使侦听器能够接收事件通知。
EventDispatcher
 Inherited
指示安全限制是否会导致出现以下情况:在列表中忽略了使用指定 point 点调用 DisplayObjectContainer.getObjectsUnderPoint() 方法时返回的所有显示对象。
DisplayObjectContainer
 Inherited
返回将放置项目添加到放置目标中的位置的索引。
ListBase
 Inherited
callLater(method:Function, args:Array = null):void
排队稍后调用的函数。
UIComponent
  
清除此控件,使其不显示任何项目。
FileSystemList
 Inherited
删除此组件实例中的样式属性。
UIComponent
 Inherited
确定指定显示对象是 DisplayObjectContainer 实例的子项还是该实例本身。
DisplayObjectContainer
 Inherited
将 Point 对象由内容坐标转换为全局坐标。
UIComponent
 Inherited
将 Point 对象由内容坐标转换为本地坐标。
UIComponent
 Inherited
返回标识此容器中的子项的一组属性。
UIComponent
 Inherited
createItemEditor(colIndex:int, rowIndex:int):void
使用由 itemEditor 属性指定的编辑器在 editedItemPosition 为项目渲染器创建项目编辑器。
List
 Inherited
获取适当的渲染器,如果未指定渲染器,则使用默认渲染器。
List
 Inherited
在 IUIComponent 对象的父项文档对象上创建对此对象的 id 引用。
UIComponent
 Inherited
在 IUIComponent 对象的父项文档对象上删除对此对象的 id 引用。
UIComponent
 Inherited
关闭当前在某个项目上打开的项目编辑器。
List
 Inherited
返回与此 UIComponent 的文本样式对应的 UITextFormat 对象。
UIComponent
 Inherited
将事件调度到事件流中。
UIComponent
 Inherited
在此组件周围显示或隐藏焦点指示符。
UIComponent
 Inherited
drawRoundRect(x:Number, y:Number, width:Number, height:Number, cornerRadius:Object = null, color:Object = null, alpha:Object = null, gradientMatrix:Matrix = null, gradientType:String = "linear", gradientRatios:Array = null, hole:Object = null):void
通过编程方式在此外观的 Graphics 对象中绘制一个矩形。
UIComponent
 Inherited
停止在组件上播放效果实例时,由效果实例调用。
UIComponent
 Inherited
开始在组件上播放效果实例时,由效果实例调用。
UIComponent
 Inherited
结束组件上当前播放的所有效果。
UIComponent
 Inherited
executeBindings(recurse:Boolean = false):void
将数据绑定到此 UIComponent 对象。
UIComponent
  
findIndex(nativePath:String):int
返回具有指定本机文件系统路径的 File 项目的索引。
FileSystemList
  
findItem(nativePath:String):File
搜索此控件中当前显示的 File 实例,并返回一个具有指定 nativePath 属性的实例。
FileSystemList
 Inherited
根据 String 查找列表中的项目,并将所选内容移至该项目。
ListBase
 Inherited
打印完成后调用。
UIComponent
 Inherited
在指定的索引位置提供自动化对象。
UIComponent
 Inherited
getBounds(targetCoordinateSpace:DisplayObject):Rectangle
返回一个矩形,该矩形定义相对于 targetCoordinateSpace 对象坐标系的显示对象区域。
DisplayObject
 Inherited
返回位于指定索引处的子显示对象实例。
DisplayObjectContainer
 Inherited
返回具有指定名称的子显示对象。
DisplayObjectContainer
 Inherited
返回 DisplayObject 的 child 实例的索引位置。
DisplayObjectContainer
 Inherited
查找此 UIComponent 实例的类型选择器。
UIComponent
 Inherited
getConstraintValue(constraintName:String):*
返回一个约束布局值,这与获取此组件的约束样式的方式类似。
UIComponent
 Inherited
确定是使用显式高度还是测量高度的一种简便方法
UIComponent
 Inherited
确定是使用显式宽度还是测量宽度的一种简便方法
UIComponent
 Inherited
获取当前具有焦点的对象。
UIComponent
 Inherited
返回相应的工厂;如果尚未指定,则使用默认工厂。
ListBase
 Inherited
返回对象的数组,这些对象位于指定点下,并且是该 DisplayObjectContainer 实例的子项(或孙子项,依此类推)。
DisplayObjectContainer
 Inherited
getRect(targetCoordinateSpace:DisplayObject):Rectangle
返回一个矩形,该矩形根据 targetCoordinateSpace 参数定义的坐标系定义显示对象的边界,但不包括形状上的任何笔触。
DisplayObject
 Inherited
getRendererSemanticValue(target:Object, semanticProperty:String):Object
返回 true 或 false 以指示是否应在目标上播放效果。
ListBase
 Inherited
getRepeaterItem(whichRepeater:int = -1):Object
返回 dataProvider 中由指定的 Repeater 用来生成此 Repeater 的项目;如果此 Repeater 未重复,则返回 null。
UIComponent
 Inherited
getStyle(styleProp:String):*
获取已在此组件的样式查找链中的某个位置设置过的样式属性。
UIComponent
 Inherited
将 Point 对象由全局坐标转换为内容坐标。
UIComponent
 Inherited
将 point 对象从舞台(全局)坐标转换为显示对象的(本地)坐标。
DisplayObject
 Inherited
将二维点从舞台(全局)坐标转换为三维显示对象的(本地)坐标。
DisplayObject
 Inherited
检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。
EventDispatcher
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
在鼠标指针下方隐藏指示允许执行拖放操作的放置指示符。
ListBase
 Inherited
计算显示对象,以确定它是否与 obj 显示对象重叠或相交。
DisplayObject
 Inherited
hitTestPoint(x:Number, y:Number, shapeFlag:Boolean = false):Boolean
计算显示对象,以确定它是否与 x 和 y 参数指定的点重叠或相交。
DisplayObject
 Inherited
返回一个框 Matrix,在绘制水平渐变时可以将其作为 rot 参数传递给 drawRoundRect() 方法。
UIComponent
 Inherited
针对数据提供程序中某个项目的索引获取项目渲染器(如果存在)。
ListBase
 Inherited
indicesToIndex(rowIndex:int, colIndex:int):int
计算 colIndex 和 rowIndex 处项目的数据提供程序中的偏移量。
ListBase
 Inherited
初始化此组件的内部结构。
UIComponent
 Inherited
初始化用于跟踪此组件的重复实例的各个属性。
UIComponent
 Inherited
标记组件,以便在稍后屏幕更新期间调用该组件的 updateDisplayList() 方法。
UIComponent
 Inherited
在下次更新时刷新所有行。
ListBase
 Inherited
标记组件,以便在稍后屏幕更新期间调用该组件的 commitProperties() 方法。
UIComponent
 Inherited
标记组件,以便在稍后屏幕更新期间调用该组件的 measure() 方法。
UIComponent
 Inherited
确定数据提供程序项目的项目渲染器是否可编辑。
List
 Inherited
确定是否加亮显示数据提供者项目的项目渲染器(当鼠标滑过它,或者通过键盘导航使它位于尖号下方时)。
ListBase
 Inherited
确定数据提供程序项目的项目渲染器是否可选。
ListBase
 Inherited
确定是否已选中数据提供程序项目的项目渲染器。
ListBase
 Inherited
确定渲染器是否显示某个项目。
ListBase
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
确定渲染器是否包含(或拥有)显示对象。
ListBase
 Inherited
返回通过此项目渲染器呈现的该项目在数据提供程序中的项目索引。
ListBase
 Inherited
返回渲染器根据 dataTipField 和 dataTipFunction 属性显示给定数据对象的数据提示字符串。
ListBase
 Inherited
根据 iconField 和 iconFunction 属性返回表示数据项目图标的类(如果存在)。
ListBase
 Inherited
返回数据提供程序中给定项目的项目渲染器(如果存在)。
ListBase
 Inherited
返回渲染器根据 labelField 和 labelFunction 属性显示给定数据对象的字符串。
ListBase
 Inherited
将三维显示对象的(本地)坐标的三维点转换为舞台(全局)坐标中的二维点。
DisplayObject
 Inherited
将 Point 对象由本地坐标转换为内容坐标。
UIComponent
 Inherited
将 point 对象从显示对象的(本地)坐标转换为舞台(全局)坐标。
DisplayObject
 Inherited
measureHeightOfItems(index:int = -1, count:int = 0):Number
使用当前项目渲染器测量数据提供程序中的一组项目,并返回这些项目的高度之和。
ListBase
 Inherited
测量指定的 HTML 文本(该文本中可能包含 <font> 和 <b> 等 HTML 标记),假定该文本显示在单行 UITextField(使用由此 UIComponent 的样式确定的 UITextFormat)中。
UIComponent
 Inherited
测量指定的文本,假定该文本显示在单行 UITextField(使用由此 UIComponent 的样式确定的 UITextFormat)中。
UIComponent
 Inherited
measureWidthOfItems(index:int = -1, count:int = 0):Number
使用当前项目渲染器测量数据提供程序中的一组项目,并返回找到的最大宽度。
ListBase
 Inherited
将组件移动到其父项内的指定位置。
UIComponent
  
navigateBack(index:int = 0):void
更改此控件可显示 backHistory 数组中上次访问过的目录中的内容。
FileSystemList
  
更改此控件可显示所选子目录的内容。
FileSystemList
  
更改此控件可显示 forwardHistory 数组中上次访问过的目录中的内容。
FileSystemList
  
navigateTo(directory:File):void
更改此控件可显示指定目录的内容。
FileSystemList
  
更改此控件可显示层次结构中上一目录的内容。
FileSystemList
 Inherited
将样式更改传播到子项。
UIComponent
 Inherited
如果 owner 属性链从 child 指向此 UIComponent,则返回 true。
UIComponent
 Inherited
当在父项中添加或删除 UIComponent 对象时由 Flex 调用。
UIComponent
 Inherited
准备 IFlexDisplayObject 用于打印。
UIComponent
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
  
重新枚举此控件显示的当前目录。
FileSystemList
 Inherited
为此组件构建或重新构建 CSS 样式缓存;如果 recursive 参数为 true,还会为此组件的所有后代执行同样的操作。
UIComponent
 Inherited
针对每个效果事件,将 EffectManager 注册为一个事件侦听器。
UIComponent
 Inherited
从 DisplayObjectContainer 实例的子列表中删除指定的 child DisplayObject 实例。
DisplayObjectContainer
 Inherited
从 DisplayObjectContainer 的子列表中指定的 index 位置删除子 DisplayObject。
DisplayObjectContainer
 Inherited
如果正在运行数据更改效果,则移除项目渲染器。
ListBase
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
从 EventDispatcher 对象中删除侦听器。
EventDispatcher
 Inherited
重放指定的事件。
UIComponent
 Inherited
使用提供的 ID 解析子项。
UIComponent
 Inherited
[静态] 在调用 suspendBackgroundProcessing() 之后继续对使用 callLater() 排队的方法进行背景处理。
UIComponent
 Inherited
确保给定索引处的数据提供程序项目可见。
ListBase
 Inherited
调整对象大小。
UIComponent
 Inherited
更改现有子项在显示对象容器中的位置。
DisplayObjectContainer
 Inherited
setConstraintValue(constraintName:String, value:*):void
设置一个布局约束值的方式,与设置此组件的约束样式的方式相同。
UIComponent
 Inherited
setCurrentState(stateName:String, playTransition:Boolean = true):void
设置当前状态。
UIComponent
 Inherited
设置此组件的焦点。
UIComponent
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
setStyle(styleProp:String, newValue:*):void
对此组件实例设置样式属性。
UIComponent
 Inherited
setVisible(value:Boolean, noEvent:Boolean = false):void
当 visible 属性发生更改时调用。
UIComponent
 Inherited
在鼠标指针下方显示拖放指示符表示允许拖放操作以及项目的放置位置。
ListBase
 Inherited
startDrag(lockCenter:Boolean = false, bounds:Rectangle = null):void
允许用户拖动指定的 Sprite。
Sprite
 Inherited
结束 startDrag() 方法。
Sprite
 Inherited
检测对样式属性的更改。
UIComponent
 Inherited
首次初始化组件样式时,Flex 会调用 stylesInitialized() 方法。
UIComponent
 Inherited
[静态] 阻止对使用 callLater() 排队的方法进行背景处理,直到调用 resumeBackgroundProcessing() 为止。
UIComponent
 Inherited
交换两个指定子对象的 Z 轴顺序(从前到后顺序)。
DisplayObjectContainer
 Inherited
swapChildrenAt(index1:int, index2:int):void
在子级列表中两个指定的索引位置,交换子对象的 Z 轴顺序(前后顺序)。
DisplayObjectContainer
 Inherited
返回一个字符串,用于指示此对象在应用程序的 DisplayObject 层次结构中所处的位置。
FlexSprite
 Inherited
如果对应于特定数据项目的项目渲染器需要移动到控件中项目渲染器的正常位置之外,则将作为数据更改效果的一部分由 UnconstrainItemAction 效果调用。
ListBase
 Inherited
验证子项的位置和大小,并绘制其它可视内容。
UIComponent
 Inherited
验证并更新此对象的属性和布局,如果需要的话重绘对象。
UIComponent
 Inherited
由布局逻辑用于通过调用 commitProperties() 方法来验证组件的属性。
UIComponent
 Inherited
validateSize(recursive:Boolean = false):void
如果使用此 ILayoutManagerClient 调用 LayoutManager.invalidateSize() 方法,随后在测量时调用了 validateSize() 方法,则验证组件的度量大小。
UIComponent
 Inherited
处理分配给此组件的验证程序调度的 valid 和 invalid 事件。
UIComponent
 Inherited
返回指定对象的原始值。
Object
 Inherited
返回一个框 Matrix,在绘制垂直渐变时可以将其作为 rot 参数传递给 drawRoundRect()。
UIComponent
 Inherited
检查是否用此 EventDispatcher 对象或其任何始祖为指定事件类型注册了事件侦听器。
EventDispatcher
受保护的方法
 方法定义方
 Inherited
作为拖放操作的一部分,将所选项目添加到 DragSource 对象。
ListBase
 Inherited
将渲染器添加到循环使用的渲染器列表,使其不可见并清除对该渲染器的引用。
ListBase
 Inherited
从用于存储对行的引用的数组开头添加一个空白行.
ListBase
 Inherited
调整焦点矩形。
UIComponent
 Inherited
adjustListContent(unscaledWidth:Number = -1, unscaledHeight:Number = -1):void
从 updateDisplayList() 方法中调用,用以调整 listContent 的大小和位置。
ListBase
 Inherited
设置应用选择指示符的效果。
ListBase
 Inherited
这是一个内部方法,供 Flex 框架用于支持 Dissolve 效果。
UIComponent
 Inherited
在执行拖放操作时计算放置指示符的 y 位置。
ListBase
 Inherited
创建子对象后执行任何最终处理。
UIComponent
 Inherited
清除给定 Sprite 中的尖号指示符。.
ListBase
 Inherited
清除给定 Sprite 中的加亮指示符.
ListBase
 Inherited
删除所有选定、加亮显示和尖号指示符。
ListBase
 Inherited
clearSelected(transition:Boolean = false):void
清除所选项目组,并移除表示那些项目的选定状态的所有图形。
ListBase
 Inherited
清空 visibleData 哈希表.
ListBase
 Inherited
当数据发生更改时,处理从数据提供程序中调度的 CollectionEvent。
ListBase
 Inherited
根据是否已显式设置 columnCountcolumnWidth、rowHeight 和 rowCount 等属性来计算列宽、行高以及行数和列数。
ListBase
 Inherited
根据行数、列数以及可查看的行和列配置 ScrollBar。
ListBase
 Inherited
通过调用 ObjectUtil.copy() 方法为此对象制作一个深层副本,然后通过调用 UIDUtil.createUID() 方法用一个新值替代该副本的 uid 属性(如果存在)。
ListBase
 Inherited
copySelectedItems(useDataField:Boolean = true):Array
按照选择时的顺序复制所选项目。
ListBase
 Inherited
为此组件创建边框。
ScrollControlBase
 Inherited
创建对象作为此 ListBase 的子对象,在这种情况下为将容纳所有项目渲染器的 listContent 对象。
ListBase
 Inherited
根据所用的嵌入字体使用上下文创建新对象。
UIComponent
 Inherited