パッケージ | com.adobe.gravity.utility.events |
クラス | public class AugmentedErrorEvent |
継承 | AugmentedErrorEvent ErrorEvent TextEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
error : Error [読み取り専用] The original Error object. | AugmentedErrorEvent | ||
errorID : int [読み取り専用]
特定のエラーに関連付けられた参照番号です。 | ErrorEvent | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
text : String
textInput イベントの場合は、ユーザーが入力した文字または文字の連続です。 | TextEvent | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | AugmentedErrorEvent | ||
[オーバーライド]
Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original. | AugmentedErrorEvent | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
[オーバーライド]
ErrorEvent オブジェクトのすべてのプロパティを含むストリングを返します。 | ErrorEvent | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
パブリック定数
定数 | 定義元 | ||
---|---|---|---|
ERROR : String = "error" [静的]
The AugmentedErrorEvent.ERROR constant defines the value of the
type property of the event object for an error event. | AugmentedErrorEvent |
プロパティの詳細
error | プロパティ |
コンストラクターの詳細
AugmentedErrorEvent | () | コンストラクター |
public function AugmentedErrorEvent(error:Error, type:String = "error", bubbles:Boolean = false)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Constructor.
パラメーターerror:Error — The original Error object. Must not be null.
| |
type:String (default = "error ") — The event type; generally the default type of "error" should be preferred, so that all errors can be caught without resorting to adding many handlers.
| |
bubbles:Boolean (default = false ) — Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false.
|
メソッドの詳細
clone | () | メソッド |
override public function clone():Event
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
Creates a copy of the ErrorEvent object and sets the value of each property to match that of the original.
戻り値Event — A new ErrorEvent object with property values that match those of the original.
|
定数の詳細
ERROR | 定数 |
public static const ERROR:String = "error"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
ランタイムバージョン: | AIR 1.1, Flash Player 9 |
The AugmentedErrorEvent.ERROR
constant defines the value of the
type
property of the event object for an error
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
error | The Error object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 10:34 AM Z