Paket | ga.views |
Klasse | public class DynamicSectionView |
Vererbung | DynamicSectionView Node ArrayCollection ListCollectionView Proxy |
Implementiert | IGuideView |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
DynamicSectionView
class provides a dynamic list of the panels contained
within the currently selected section. When the currently selected section changes, this
class provides an updated list of panels for the newly selected section.
For example, using the following example Guide tree:
Guide | ||
Section A | ||
Panel A-1 | ||
Panel A-2 | ||
Section B | ||
Panel B-1 |
- Panel A-1
- Panel A-2
- Panel B-1
Standard-MXML-Eigenschaftsource
Verwandte API-Elemente
Eigenschaft | Definiert von | ||
---|---|---|---|
filterFunction : Function
Eine Funktion, die von der Ansicht verwendet wird, um Elemente zu entfernen, die die Funktionskriterien nicht erfüllen. | ListCollectionView | ||
instance : DynamicSectionView [statisch] [schreibgeschützt]
The common instance of this class. | DynamicSectionView | ||
label : String [schreibgeschützt]
The name of the current section. | DynamicSectionView | ||
length : int [schreibgeschützt]
Die Anzahl der Elemente in dieser Ansicht. | ListCollectionView | ||
list : IList
Die IList, die diese Sammlung einschließt. | ListCollectionView | ||
selectedIndex : int
[bindable] The index of the selected section. | DynamicSectionView | ||
selectedItem : Object
[bindable] The selected section. | DynamicSectionView | ||
sort : ISort
Das ISort-Objekt, das auf die ICollectionView angewendet wird. | ListCollectionView | ||
source : Array
Die Quelle der Daten im ArrayCollection-Objekt. | ArrayCollection |
Methode | Definiert von | ||
---|---|---|---|
Constructor
| DynamicSectionView | ||
Fügt am Ende der aktuellen Liste eine Liste von Elementen in der Reihenfolge hinzu, in der sie übergeben werden. | ListCollectionView | ||
Fügt der aktuellen Liste eine Liste von Elementen hinzu. Sie werden an dem Positionsindex eingefügt, der an die Funktion übergeben wurde. | ListCollectionView | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registriert ein Ereignis-Listener-Objekt bei einem EventDispatcher-Objekt, sodass der Listener über ein Ereignis benachrichtigt wird. | ListCollectionView | ||
Fügt das angegebene Element am Ende der Liste hinzu. | ListCollectionView | ||
Fügt das Element an der angegebenen Indexposition hinzu. | ListCollectionView | ||
Gibt zurück, ob die Ansicht das angegebene Objekt enthält. | ListCollectionView | ||
Erstellt einen neuen IViewCursor, der mit dieser Ansicht verwendet wird. | ListCollectionView | ||
Verhindert, dass Änderungen der Sammlung selbst und Elemente aus der Sammlung von der Ansicht verteilt werden. | ListCollectionView | ||
Sendet ein Ereignis in den Ereignisablauf. | ListCollectionView | ||
Aktiviert die automatische Aktualisierung. | ListCollectionView | ||
Ruft das Element am angegebenen Index ab. | ListCollectionView | ||
Gibt den Index des Elements zurück, wenn es in der Liste enthalten ist, sodass gilt: getItemAt(Index) == Element. | ListCollectionView | ||
Überprüft, ob das EventDispatcher-Objekt Listener für einen bestimmten Ereignistyp registriert hat. | ListCollectionView | ||
Wird automatisch vom MXML-Compiler aufgerufen, wenn die ListCollectionView mithilfe eines MXML-Tags erstellt wird. | ListCollectionView | ||
itemUpdated(item:Object, property:Object = null, oldValue:Object = null, newValue:Object = null):void
Informiert die Ansicht darüber, dass ein Element aktualisiert wurde. | ListCollectionView | ||
Wendet die Sortierung und den Filter auf die Ansicht an. | ListCollectionView | ||
Entfernt alle Elemente aus der Liste. | ListCollectionView | ||
Entfernt einen Listener aus dem EventDispatcher-Objekt. | ListCollectionView | ||
Entfernt das Element am angegebenen Index und gibt es zurück. | ListCollectionView | ||
Platziert das Element am angegebenen Index. | ListCollectionView | ||
Gibt ein Array zurück, das in derselben Reihenfolge gefüllt wird wie die IList-Implementierung. | ListCollectionView | ||
Gibt den Inhalt dieser Ansicht als String aus und gibt ihn zurück. | ListCollectionView | ||
Überprüft, ob bei diesem EventDispatcher-Objekt oder bei einem seiner übergeordneten Objekte ein Ereignis-Listener für einen bestimmten Ereignistyp registriert ist. | ListCollectionView |
Ereignis | Übersicht | Definiert von | ||
---|---|---|---|---|
Wird ausgelöst, wenn ICollectionView auf irgendeine Weise aktualisiert wurde. | ListCollectionView | |||
Dispatched when a repeating panel is added to a Guide. | DynamicSectionView | |||
Dispatched when a repeating panel is removed from a Guide. | DynamicSectionView | |||
Dispatched when a panel is selected. | DynamicSectionView |
instance | Eigenschaft |
instance:DynamicSectionView
[schreibgeschützt] Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
The common instance of this class.
Implementierung
public static function get instance():DynamicSectionView
label | Eigenschaft |
selectedIndex | Eigenschaft |
selectedIndex:int
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
[bindable] The index of the selected section.
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange
-Ereignis ausgelöst.
Implementierung
public function get selectedIndex():int
public function set selectedIndex(value:int):void
selectedItem | Eigenschaft |
selectedItem:Object
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
[bindable] The selected section.
Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange
-Ereignis ausgelöst.
Implementierung
public function get selectedItem():Object
public function set selectedItem(value:Object):void
DynamicSectionView | () | Konstruktor |
public function DynamicSectionView()
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Constructor
pageAdd | Ereignis |
ga.model.GAEvent
Eigenschaft GAEvent.type =
ga.model.GAEvent.PAGE_ADD
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating panel is added to a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
page | The page that was added. |
section | The section that contains the added page. |
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
pageRemove | Ereignis |
ga.model.GAEvent
Eigenschaft GAEvent.type =
ga.model.GAEvent.PAGE_REMOVE
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating panel is removed from a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
page | The page that was removed. |
section | The section that contained the removed page. |
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
pageSelectionChange | Ereignis |
ga.model.GAEvent
Eigenschaft GAEvent.type =
ga.model.GAEvent.PAGE_SELECTION_CHANGE
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
Dispatched when a panel is selected.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 10:04 AM Z