套件 | flash.accessibility |
介面 | public interface ISimpleTextSelection |
語言版本: | ActionScript 3.0 |
執行階段版本: | AIR 1.0, Flash Player 10.1 |
如果 AccessibilityImplementation 子類別在這個類別中實作兩個 getter,像 JAWS 等螢幕朗讀程式可以透過呼叫它們來決定文字選取範圍。AccessibilityImplementation 子類別不必正式宣告它實作此介面,您可以直接為這兩個屬性宣告 getter,如下所示:
class TextAreaAccImpl extends AccesibilityImplementation { ... public function get selectionAnchorIndex():int { ... } public function get selectionActiveIndex():int { ... } }
相關 API 元素
公用屬性
屬性 | 定義自 | ||
---|---|---|---|
selectionActiveIndex : int [唯讀]
目前選取範圍中,最後一個字元的字元索引值 (從零開始)。 | ISimpleTextSelection | ||
selectionAnchorIndex : int [唯讀]
目前選取範圍中,第一個字元的字元索引值 (從零開始)。 | ISimpleTextSelection |
Tue Jun 12 2018, 03:47 PM Z