| パッケージ | lc.procmgmt.events |
| クラス | public class SwfAppEvent |
| 継承 | SwfAppEvent Event Object |
| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfAppEvent event is used to communicate between an application built with Flex
(Flex application and Workspace).
| メソッド | 定義元 | ||
|---|---|---|---|
SwfAppEvent(type:String)
Constructor. | SwfAppEvent | ||
![]() |
Event サブクラスのインスタンスを複製します。 | Event | |
![]() |
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | |
![]() |
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | |
![]() |
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | |
![]() |
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | |
![]() |
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | |
![]() |
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | |
![]() |
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | |
![]() |
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | |
![]() |
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | |
![]() |
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | |
![]() |
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | |
![]() |
指定されたオブジェクトのプリミティブな値を返します。 | Object | |
| 定数 | 定義元 | ||
|---|---|---|---|
| CLOSE : String = "close" [静的]
A special value that specifies to close the Flex application. | SwfAppEvent | ||
| FULL_SCREEN : String = "maximize" [静的]
A special value that specifies to display the Flex application in full screen mode. | SwfAppEvent | ||
| HIDE_ALL_CONTAINER_VIEWS : String = "hideAllContainerViews" [静的]
A special value that specifies to the Flex application to hide all views except for the Flex application itself. | SwfAppEvent | ||
| HIDE_ATTACHMENTS_VIEW : String = "hideAttachmentsView" [静的]
A special value that specifies to the Flex application to hide the Task Attachments view. | SwfAppEvent | ||
| HIDE_AUDIT_VIEW : String = "hideAuditView" [静的]
A special value that specifies to the Flex application to hide the Task Audit view. | SwfAppEvent | ||
| HIDE_DIRECTIVES_VIEW : String = "hideDirectivesView" [静的]
A special value that specifies to the Flex application to hide the Task Directives view. | SwfAppEvent | ||
| HIDE_TASK_DETAILS_VIEW : String = "hideTaskDetailsView" [静的]
A special value that specifies to the Flex application to hide the Task Details view. | SwfAppEvent | ||
| HIDE_TASK_FORM_VIEW : String = "hideFormView" [静的]
A special value that specifies to the Flex application to hide the Task Form view. | SwfAppEvent | ||
| MINIMIZE_SCREEN : String = "minimize" [静的]
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode. | SwfAppEvent | ||
| SHOW_ATTACHMENTS_VIEW : String = "showAttachmentsView" [静的]
A special value that specifies to the Flex application to display the Task Attachments view. | SwfAppEvent | ||
| SHOW_AUDIT_VIEW : String = "showAuditView" [静的]
A special value that specifies to the Flex application to display the Task Audit view. | SwfAppEvent | ||
| SHOW_DIRECTIVES_VIEW : String = "showDirectivesView" [静的]
A special value that specifies to the Flex application to display the Task Directives view. | SwfAppEvent | ||
| SHOW_TASK_DETAILS_VIEW : String = "showTaskDetailsView" [静的]
A special value that specifies to the Flex applicatin to display the Task Details view. | SwfAppEvent | ||
| SHOW_TASK_FORM_VIEW : String = "showFormView" [静的]
A special value that specifies to the Flex application to display Task Form view. | SwfAppEvent | ||
| UNLOAD : String = "unload" [静的]
A special value that specifies to unload the Flex application. | SwfAppEvent | ||
SwfAppEvent | () | コンストラクター |
public function SwfAppEvent(type:String)| 言語バージョン: | 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 to create. You can use an event type defined
in this class, such as hideTaskDetailsView.
|
CLOSE | 定数 |
public static const CLOSE:String = "close"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to close the Flex application.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
FULL_SCREEN | 定数 |
public static const FULL_SCREEN:String = "maximize"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to display the Flex application in full screen mode.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_ALL_CONTAINER_VIEWS | 定数 |
public static const HIDE_ALL_CONTAINER_VIEWS:String = "hideAllContainerViews"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide all views except for the Flex application itself.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_ATTACHMENTS_VIEW | 定数 |
public static const HIDE_ATTACHMENTS_VIEW:String = "hideAttachmentsView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Attachments view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_AUDIT_VIEW | 定数 |
public static const HIDE_AUDIT_VIEW:String = "hideAuditView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Audit view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_DIRECTIVES_VIEW | 定数 |
public static const HIDE_DIRECTIVES_VIEW:String = "hideDirectivesView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Directives view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_TASK_DETAILS_VIEW | 定数 |
public static const HIDE_TASK_DETAILS_VIEW:String = "hideTaskDetailsView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Details view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_TASK_FORM_VIEW | 定数 |
public static const HIDE_TASK_FORM_VIEW:String = "hideFormView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Form view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
MINIMIZE_SCREEN | 定数 |
public static const MINIMIZE_SCREEN:String = "minimize"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_ATTACHMENTS_VIEW | 定数 |
public static const SHOW_ATTACHMENTS_VIEW:String = "showAttachmentsView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Attachments view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_AUDIT_VIEW | 定数 |
public static const SHOW_AUDIT_VIEW:String = "showAuditView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Audit view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_DIRECTIVES_VIEW | 定数 |
public static const SHOW_DIRECTIVES_VIEW:String = "showDirectivesView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Directives view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_TASK_DETAILS_VIEW | 定数 |
public static const SHOW_TASK_DETAILS_VIEW:String = "showTaskDetailsView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex applicatin to display the Task Details view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_TASK_FORM_VIEW | 定数 |
public static const SHOW_TASK_FORM_VIEW:String = "showFormView"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display Task Form view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
UNLOAD | 定数 |
public static const UNLOAD:String = "unload"| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| ランタイムバージョン: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to unload the Flex application.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 10:34 AM Z
継承されるパブリックプロパティを隠す
継承されるパブリックプロパティを表示