Package | flashx.textLayout.operations |
Class | public class ClearFormatOperation |
Inheritance | ClearFormatOperation FlowTextOperation FlowOperation Object |
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
An UndefineFormatOperation undefines properties set in the leaf format to the text in the specified range (no change is made if the specified range is a single point). It undefines properties set in the paragraph format to any paragraphs at least partially within the range (or a single paragraph if the range is a single point). And it undefines properties set in the container format to any containers at least partially within the range (or a single container if the range is a single point).
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 | ||
containerFormat : ITextLayoutFormat
The format properties to undefine on the containers in the range. | ClearFormatOperation | ||
endGeneration : uint [read-only]
The text flow generation after the operation. | FlowOperation | ||
leafFormat : ITextLayoutFormat
The format properties to undefine on the leaf elements in the range. | ClearFormatOperation | ||
originalSelectionState : SelectionState
The selection state at the start of the operation. | FlowTextOperation | ||
paragraphFormat : ITextLayoutFormat
The format properties to undefine on the paragraphs in the range. | ClearFormatOperation | ||
textFlow : TextFlow
The TextFlow object to which this operation is applied. | FlowOperation | ||
userData : *
Arbitrary data associated with an element. | FlowOperation |
Method | Defined By | ||
---|---|---|---|
ClearFormatOperation(operationState:SelectionState, leafFormat:ITextLayoutFormat, paragraphFormat:ITextLayoutFormat, containerFormat:ITextLayoutFormat = null)
Creates an ClearFormatOperation object. | ClearFormatOperation | ||
canUndo():Boolean
Test if this operation be placed on the undo stack. | FlowOperation | ||
doOperation():Boolean
Executes the operation. | FlowOperation | ||
[override] | ClearFormatOperation | ||
Reverses the operation. | FlowOperation |
containerFormat | property |
containerFormat:ITextLayoutFormat
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
The format properties to undefine on the containers in the range.
The formats of any containers at least partially within the range are updated.
If the range of this operation is a point, then a single container is updated.
If containerFormat
is null
, then no container formats are changed.
public function get containerFormat():ITextLayoutFormat
public function set containerFormat(value:ITextLayoutFormat):void
leafFormat | property |
leafFormat:ITextLayoutFormat
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
The format properties to undefine on the leaf elements in the range.
If the range of this operation is a point, or if leafFormat
is null
,
then no leaf element formats are changed.
public function get leafFormat():ITextLayoutFormat
public function set leafFormat(value:ITextLayoutFormat):void
paragraphFormat | property |
paragraphFormat:ITextLayoutFormat
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
The format properties to undefine on the paragraphs in the range.
The formats of any paragraphs at least partially within the range are updated.
If the range of this operation is a point, then a single paragraph is updated.
If paragraphFormat
is null
, then no paragraph formats are changed.
public function get paragraphFormat():ITextLayoutFormat
public function set paragraphFormat(value:ITextLayoutFormat):void
ClearFormatOperation | () | Constructor |
public function ClearFormatOperation(operationState:SelectionState, leafFormat:ITextLayoutFormat, paragraphFormat:ITextLayoutFormat, containerFormat:ITextLayoutFormat = null)
Language Version : | ActionScript 3.0 |
Runtime Versions : | Flash Player 10, AIR 1.5 |
Creates an ClearFormatOperation object.
ParametersoperationState:SelectionState — Defines the text range to which the format is applied.
| |
leafFormat:ITextLayoutFormat — The format whose set values indicate properties to undefine to LeafFlowElement objects in the selected range.
| |
paragraphFormat:ITextLayoutFormat — The format whose set values indicate properties to undefine to ParagraphElement objects in the selected range.
| |
containerFormat:ITextLayoutFormat (default = null ) — The format whose set values indicate properties to undefine to ContainerController objects in the selected range.
|
redo | () | method |