| 패키지 | 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, 03:17 PM Z
상속되는 공용 속성 숨기기
상속되는 공용 속성 표시