| Language version: | ActionScript 3.0 | 
	
	The ISimpleTextSelection class can be used to add support for 
	the MSAA ISimpleTextSelection interface to an AccessibilityImplementation.
	
	
If an AccessibilityImplementation subclass implements the two getters in this class, 
	a screen reader such as JAWS can determine the text selection range by calling them.
	The AccessibilityImplementation subclass does not have to formally declare that it implements
	this interface; you can simply declare getters for these two properties, as follows:
		
	class TextAreaAccImpl extends AccesibilityImplementation
	{
	...
		public function get selectionAnchorIndex():int
		{
		...
		}
		public function get selectionActiveIndex():int
		{
		...
	}
	}
	
 
selectionActiveIndex:int  [read-only]
| Language version: | ActionScript 3.0 | 
 
		 The zero-based character index value of the last character in the current selection.
		 If you want a component to support inline IME or accessibility, override this method.
		 		 
Implementation
    public function get selectionActiveIndex():int
 
selectionAnchorIndex:int  [read-only]
| Language version: | ActionScript 3.0 | 
 
		 The zero-based character index value of the first character in the current selection.
		 If you want a component to support inline IME or accessibility, override this method.
		 		 
Implementation
    public function get selectionAnchorIndex():int
 
 © 2004-2022 Adobe Systems Incorporated. All rights reserved. 
Wed Sep 28 2022, 6:12 PM GMT+01:00
 