Package | flashx.textLayout.operations |
Class | public class CutOperation |
Inheritance | CutOperation FlowTextOperation FlowOperation Object |
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
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
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 | ||
endGeneration : uint [read-only]
The text flow generation after the operation. | FlowOperation | ||
originalSelectionState : SelectionState
The selection state at the start of the operation. | FlowTextOperation | ||
scrapToCut : TextScrap
scrapToCut the original removed text
| CutOperation | ||
textFlow : TextFlow
The TextFlow object to which this operation is applied. | FlowOperation | ||
userData : *
Arbitrary data associated with an element. | FlowOperation |
Method | Defined By | ||
---|---|---|---|
Creates a CutOperation object. | CutOperation | ||
canUndo():Boolean
Test if this operation be placed on the undo stack. | FlowOperation | ||
doOperation():Boolean
Executes the operation. | FlowOperation | ||
[override]
Re-executes the operation. | FlowTextOperation | ||
Reverses the operation. | FlowOperation |
scrapToCut | property |
scrapToCut:TextScrap
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
scrapToCut the original removed text
public function get scrapToCut():TextScrap
public function set scrapToCut(value:TextScrap):void
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.
ParametersoperationState:SelectionState — The range of text to be cut.
| |
scrapToCut:TextScrap — A copy of the deleted text.
|