Packageflashx.textLayout.operations
Classpublic class CutOperation
InheritanceCutOperation Inheritance FlowTextOperation Inheritance FlowOperation Inheritance Object

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

The CutOperation class encapsulates a cut operation.

The specified range is removed from the text flow.

Note: The edit manager is responsible for copying the text scrap to the clipboard. Undoing a cut operation does not restore the original clipboard state.

See also

flashx.textLayout.edit.EditManager
flashx.textLayout.events.FlowOperationEvent


Public Properties
 PropertyDefined By
 InheritedabsoluteEnd : int
The absolute end point of the range of text to which this operation is applied.
FlowTextOperation
 InheritedabsoluteStart : int
The absolute start point of the range of text to which this operation is applied.
FlowTextOperation
 InheritedbeginGeneration : uint
[read-only] The text flow generation before the operation.
FlowOperation
 InheritedendGeneration : uint
[read-only] The text flow generation after the operation.
FlowOperation
 InheritedoriginalSelectionState : SelectionState
The selection state at the start of the operation.
FlowTextOperation
  scrapToCut : TextScrap
scrapToCut the original removed text
CutOperation
 InheritedtextFlow : TextFlow
The TextFlow object to which this operation is applied.
FlowOperation
 InheriteduserData : *
Arbitrary data associated with an element.
FlowOperation
Public Methods
 MethodDefined By
  
CutOperation(operationState:SelectionState, scrapToCut:TextScrap)
Creates a CutOperation object.
CutOperation
 Inherited
canUndo():Boolean
Test if this operation be placed on the undo stack.
FlowOperation
 Inherited
doOperation():Boolean
Executes the operation.
FlowOperation
 Inherited
[override] Re-executes the operation.
FlowTextOperation
 Inherited
Reverses the operation.
FlowOperation
Property Detail
scrapToCutproperty
scrapToCut:TextScrap

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

scrapToCut the original removed text


Implementation
    public function get scrapToCut():TextScrap
    public function set scrapToCut(value:TextScrap):void
Constructor Detail
CutOperation()Constructor
public function CutOperation(operationState:SelectionState, scrapToCut:TextScrap)

Language Version : ActionScript 3.0
Runtime Versions : Flash Player 10, AIR 1.5

Creates a CutOperation object.

Parameters
operationState:SelectionState — The range of text to be cut.
 
scrapToCut:TextScrap — A copy of the deleted text.