(Beta)
Package | flashx.textLayout.operations |
Class | public class FlowTextOperation |
Inheritance | FlowTextOperation FlowOperation Object |
Subclasses | ApplyFormatOperation, ApplyLinkOperation, ApplyTCYOperation, ClearFormatOperation, CopyOperation, CreateDivOperation, CreateListOperation, CreateSubParagraphGroupOperation, CutOperation, DeleteTextOperation, FlowElementOperation, InsertInlineGraphicOperation, InsertTextOperation, ModifyInlineGraphicOperation, MoveChildrenOperation, PasteOperation, SplitElementOperation |
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Related API Elements
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 | ||
endGeneration : uint [read-only]
The text flow generation after the operation. | FlowOperation | ||
originalSelectionState : SelectionState
The selection state at the start of the operation. | FlowTextOperation | ||
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 | ||
---|---|---|---|
FlowTextOperation(operationState:SelectionState)
Creates the FlowTextOperation object. | FlowTextOperation | ||
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
absoluteEnd | property |
absoluteStart | property |
originalSelectionState | property |
originalSelectionState:SelectionState
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
The selection state at the start of the operation.
Implementation
public function get originalSelectionState():SelectionState
public function set originalSelectionState(value:SelectionState):void
Constructor Detail
FlowTextOperation | () | Constructor |
public function FlowTextOperation(operationState:SelectionState)
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Creates the FlowTextOperation object.
ParametersoperationState:SelectionState — Specifies the relevant selection. If relevant to the operation, the
operationState describes the text range to which this operation applies.
Otherwise, operationState is used to save the current selection state so that
it can be restored when the operation is undone.
|
Method Detail
redo | () | method |
override public function redo():SelectionState
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Re-executes the operation.
This method must be overridden in derived classes. The base class method does nothing.
You should not call redo()
directly. The edit manager
calls the method when it re-executes the operation.
SelectionState — The SelectionState object passed to the operation when it was performed. This
SelectionState object can be the current selection or a selection created specifically
for the operation.
|
Wed Nov 21 2018, 06:34 AM -08:00