| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
A read only class that describes a range of contiguous text. Such a range occurs when you select a
section of text. The range consists of the anchor point of the selection,
anchorPosition,
and the point that is to be modified by actions,
activePosition. As block selections are
modified and extended
anchorPosition remains fixed and
activePosition is modified.
The anchor position may be placed in the text before or after the active position.
absoluteEnd:int| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
End of the selection, as an absolute position in the TextFlow.
Implementation public function get absoluteEnd():int public function set absoluteEnd(value:int):voidabsoluteStart:int| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Start of the selection, as an absolute position in the TextFlow.
Implementation public function get absoluteStart():int public function set absoluteStart(value:int):voidactivePosition:int| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Active position of the selection, as an absolute position in the TextFlow.
Implementation public function get activePosition():int public function set activePosition(value:int):voidanchorPosition:int| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Anchor position of the selection, as an absolute position in the TextFlow.
Implementation public function get anchorPosition():int public function set anchorPosition(value:int):voidtextFlow:flashx.textLayout.elements:TextFlow| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Returns the TextFlow associated with the selection.
Implementation public function get textFlow():flashx.textLayout.elements:TextFlow public function set textFlow(value:flashx.textLayout.elements:TextFlow):voidpublic function TextRange(root:flashx.textLayout.elements:TextFlow, anchorIndex:int, activeIndex:int)| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Constructor - creates a new TextRange instance. A TextRange can be (-1,-1), indicating no range, or a pair of
values from 0 to TextFlow.textLength.
Parameters | root:flashx.textLayout.elements:TextFlow — the TextFlow associated with the selection.
|
| |
| anchorIndex:int — the index position of the anchor in the selection. The first position in the text is position 0.
|
| |
| activeIndex:int — the index position of the active location in the selection. The first position in the text is position 0.
|
See also
public function updateRange(newAnchorPosition:int, newActivePosition:int):Boolean| Language Version: | ActionScript 3.0 |
| Runtime Versions: | Flash Player 10, AIR 1.5 |
Update the range with new anchor or active position values.
Parameters
| newAnchorPosition:int — the anchor index of the selection.
|
| |
| newActivePosition:int — the active index of the selection.
|
Returns | Boolean — true if selection is changed.
|
© 2009 Adobe Systems Incorporated. All rights reserved.
Sat Oct 3 2009, 04:15 AM -07:00