パッケージ | flash.accessibility |
インターフェイス | public interface ISimpleTextSelection |
言語バージョン: | ActionScript 3.0 |
ランタイムバージョン: | AIR 1.0, Flash Player 10.1 |
AccessibilityImplementation サブクラスがこのクラスに 2 つの getter を実装する場合、JAWS などのスクリーンリーダーでは、これらの getter を呼び出してテキスト選択範囲を特定できます。AccessibilityImplementation サブクラスではこのインターフェイスを実装していることを正式に宣言する必要はなく、次のようにこれら 2 つの プロパティに対して getter を宣言するだけで済みます。
class TextAreaAccImpl extends AccesibilityImplementation { ... public function get selectionAnchorIndex():int { ... } public function get selectionActiveIndex():int { ... } }
関連する API エレメント
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
selectionActiveIndex : int [読み取り専用]
現在の選択範囲における最後の文字を示す、0 から始まるインデックス値です。 | ISimpleTextSelection | ||
selectionAnchorIndex : int [読み取り専用]
現在の選択範囲の最初の文字を示す、0 から始まるインデックス値です。 | ISimpleTextSelection |
Tue Jun 12 2018, 10:34 AM Z