The FlowOperation class is the base class for all Text Layout Framework operations.
Operations are transformations of a text flow. An Operation class defines the
logic for performing and undoing the transformation. Operations are executed by an
edit manager. Most applications do not need to create or manage operations directly
(unless implementing a custom edit manager).
When an operation is performed, the edit manager dispatches an Operation object
within the FlowOperationEvent object. You can query
this Operation object to decide whether or not to allow the operation, to decide whether
to perform some other operation as well, or to update related user-interface elements.
textFlow:TextFlow — The text flow to which this operation is applied.
Method Detail
canUndo
()
method
public function canUndo():Boolean
Language Version :
ActionScript 3.0
Runtime Versions :
Flash Player 10, AIR 1.5
Test if this operation be placed on the undo stack.
Returns
Boolean — true means to push the operation onto the undo stack. false means do not push this operation.
doOperation
()
method
public function doOperation():Boolean
Language Version :
ActionScript 3.0
Runtime Versions :
Flash Player 10, AIR 1.5
Executes the operation.
This method must be overridden in derived classes. The base class method does nothing.
You should not call doOperation() directly. The edit manager
calls the method when it executes the operation.
Returns
Boolean — Boolean true, if the operation succeeded. Otherwise, false.
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.
Returns
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.
This method must be overridden in derived classes. The base class method does nothing.
You should not call undo() directly. The edit manager
calls the method when it reverses the operation.
Returns
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.