パッケージ | lc.procmgmt.events |
クラス | public class SwfDataEvent |
継承 | SwfDataEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfDataEvent
event is used to pass initial data from
Workspace to the application built with Flex (Flex application). It also passes
the associated Task object that provides context info and access to the Workspace
Manager classes if the Flex application requires deeper integration with Workspace.
Communication between the Flex application you create and Workspace occurs when
events are dispatched to the sharedEvents.EventDispatcher
property on the
LoaderInfo
object of the Flex application you are creating. For example, to emit an event to
Workspace, the Flex application does the following:
systemManager.loaderInfo.sharedEvents.dispatchEvent(new Event(SwfAppEvent.SET_TASK));
パブリックプロパティ
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
data : String
The data contents for the task - usually XML that has been converted to a String. | SwfDataEvent | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
task : lc.procmgmt.domain:Task
The Task object that is associated with the event. | SwfDataEvent | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
パブリックメソッド
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | SwfDataEvent | ||
Event サブクラスのインスタンスを複製します。 | Event | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
パブリック定数
定数 | 定義元 | ||
---|---|---|---|
SET_WORKSPACE_DATA : String = "setWorkspaceData" [静的]
The type property for a SwfDataEvent event. | SwfDataEvent |
プロパティの詳細
data | プロパティ |
public var data:String
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The data contents for the task - usually XML that has been converted to a String.
task | プロパティ |
public var task:lc.procmgmt.domain:Task
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The Task
object that is associated with the event.
コンストラクターの詳細
SwfDataEvent | () | コンストラクター |
public function SwfDataEvent(type:String, task:lc.procmgmt.domain:Task, data:String = null)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
パラメーターtype:String — Specifies the type of event.
| |
task:lc.procmgmt.domain:Task — Specifies the task that is associated with the event.
| |
data:String (default = null ) — Specifies the data for the event.
|
定数の詳細
SET_WORKSPACE_DATA | 定数 |
public static const SET_WORKSPACE_DATA:String = "setWorkspaceData"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The type
property for a SwfDataEvent
event.
This event is set to always bubble.
The properties of the event object have the following values:
Property | Value |
---|---|
data | The data contents for the task. |
task | The instance of the selected task. |
Tue Jun 12 2018, 10:34 AM Z