Package | flashx.textLayout.operations |
Class | public class MoveChildrenOperation |
Inheritance | MoveChildrenOperation FlowTextOperation FlowOperation Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Related API Elements
flashx.textLayout.elements.FlowElement
flashx.textLayout.edit.EditManager
flashx.textLayout.events.FlowOperationEvent
flashx.textLayout.edit.EditManager
flashx.textLayout.events.FlowOperationEvent
Public Properties
Property | Defined By | ||
---|---|---|---|
absoluteEnd : int
The absolute end point of the range of text to which this operation is applied. | FlowTextOperation | ||
absoluteStart : int
The absolute start point of the range of text to which this operation is applied. | FlowTextOperation | ||
beginGeneration : uint [read-only]
The text flow generation before the operation. | FlowOperation | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
destination : FlowGroupElement Specifies the new parent of the items. | MoveChildrenOperation | ||
destinationIndex : int Specifies the new child index of the first element. | MoveChildrenOperation | ||
endGeneration : uint [read-only]
The text flow generation after the operation. | FlowOperation | ||
numChildren : int Specifies the index of the first item to move. | MoveChildrenOperation | ||
originalSelectionState : SelectionState
The selection state at the start of the operation. | FlowTextOperation | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
source : FlowGroupElement Specifies the parent of the item(s) to move. | MoveChildrenOperation | ||
sourceIndex : int Specifies the number of children to move. | MoveChildrenOperation | ||
textFlow : flashx.textLayout.elements:TextFlow
The TextFlow object to which this operation is applied. | FlowOperation | ||
userData : *
Arbitrary data associated with an element. | FlowOperation |
Public Methods
Method | Defined By | ||
---|---|---|---|
MoveChildrenOperation(operationState:SelectionState, source:FlowGroupElement, sourceIndex:int, numChildren:int, destination:FlowGroupElement, destinationIndex:int)
Creates a MoveChildrenOperation object. | MoveChildrenOperation | ||
Test if this operation be placed on the undo stack. | FlowOperation | ||
Executes the operation. | FlowOperation | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
[override]
Re-executes the operation. | FlowTextOperation | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Reverses the operation. | FlowOperation | ||
Returns the primitive value of the specified object. | Object |
Property Detail
destination | property |
destination:FlowGroupElement
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Specifies the new parent of the items.
Implementation
public function get destination():FlowGroupElement
public function set destination(value:FlowGroupElement):void
destinationIndex | property |
numChildren | property |
source | property |
source:FlowGroupElement
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Specifies the parent of the item(s) to move.
Implementation
public function get source():FlowGroupElement
public function set source(value:FlowGroupElement):void
sourceIndex | property |
Constructor Detail
MoveChildrenOperation | () | Constructor |
public function MoveChildrenOperation(operationState:SelectionState, source:FlowGroupElement, sourceIndex:int, numChildren:int, destination:FlowGroupElement, destinationIndex:int)
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Creates a MoveChildrenOperation object.
This operation moves a consecutive number of children of source into the destination context. Also, if moving the children leaves the source element with no children, then source will be removed. The removal is done recursively such that if source's parent becomes empty from the removal of source, it too will be deleted, and on up the parent chain.
ParametersoperationState:SelectionState — Specifies the SelectionState of this operation
| |
source:FlowGroupElement — Specifies the parent of the item(s) to move.
| |
sourceIndex:int — Specifies the index of the first item to move.
| |
numChildren:int — Specifies the number of children to move.
| |
destination:FlowGroupElement — Specifies the new parent of the items.
| |
destinationIndex:int — Specifies the new child index of the first element.
|
Mon Nov 28 2011, 06:48 AM -08:00