パッケージ | com.adobe.livecycle.content |
クラス | public class FileEvent |
継承 | FileEvent Event Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
プロパティ | 定義元 | ||
---|---|---|---|
bubbles : Boolean [読み取り専用]
イベントがバブリングイベントかどうかを示します。 | Event | ||
cancelable : Boolean [読み取り専用]
イベントに関連付けられた動作を回避できるかどうかを示します。 | Event | ||
constructor : Object
指定されたオブジェクトインスタンスのクラスオブジェクトまたはコンストラクター関数への参照です。 | Object | ||
currentTarget : Object [読み取り専用]
イベントリスナーで Event オブジェクトをアクティブに処理しているオブジェクトです。 | Event | ||
eventPhase : uint [読み取り専用]
イベントフローの現在の段階です。 | Event | ||
filedata : ByteArray [読み取り専用]
Filedata is populated when API File.downloadContentToByteArray is invoked. | FileEvent | ||
target : Object [読み取り専用]
イベントターゲットです。 | Event | ||
type : String [読み取り専用]
イベントのタイプです。 | Event |
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | FileEvent | ||
[オーバーライド]
Creates clone of a FileEvent instance. | FileEvent | ||
カスタム ActionScript 3.0 Event クラスに toString() メソッドを実装するためのユーティリティ関数です。 | Event | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
イベントで preventDefault() メソッドが呼び出されたかどうかを確認します。 | Event | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
イベントのデフォルト動作をキャンセルできる場合に、その動作をキャンセルします。 | Event | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
イベントフローの現在のノードおよび後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
イベントフローの現在のノードに後続するノードで、イベントリスナーが処理されないようにします。 | Event | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
Event オブジェクトのすべてのプロパティを含むストリングを返します。 | Event | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object |
定数 | 定義元 | ||
---|---|---|---|
FILE_CONTENT_CHANGE_EVENT : String = "fileContentChangeEvent" [静的]
The FILE_CONTENT_CHANGE_EVENT constant defines the event type. | FileEvent | ||
FILE_DELETED_EVENT : String = "fileDeletedEvent" [静的]
The FILE_DELETED_EVENT constant defines the event type. | FileEvent | ||
FILE_DOWNLOAD_COMPLETED_EVENT : String = "filedownloadCompletedEvent" [静的]
The FILE_DOWNLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent | ||
FILE_METADATA_FILLED_EVENT : String = "fileMetaDataFilledEvent" [静的]
The FILE_METADATA_FILLED_EVENT constant defines the event type. | FileEvent | ||
FILE_UPLOAD_COMPLETED_EVENT : String = "fileUploadCompletedEvent" [静的]
The FILE_UPLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent |
filedata | プロパティ |
filedata:ByteArray
[読み取り専用] 言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Filedata is populated when API File.downloadContentToByteArray is invoked. In all other cases it is a value of null
.
実装
public function get filedata():ByteArray
FileEvent | () | コンストラクター |
public function FileEvent(eventName:String, filedata:ByteArray = null)
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Constructor.
パラメーターeventName:String — name of the event
| |
filedata:ByteArray (default = null ) — binary content in case when API File.downloadContentToByteArray is invoked.
|
clone | () | メソッド |
FILE_CONTENT_CHANGE_EVENT | 定数 |
public static const FILE_CONTENT_CHANGE_EVENT:String = "fileContentChangeEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The FILE_CONTENT_CHANGE_EVENT constant defines the event type. The event is dispatched when content is changed on server and corresponding File instance is managed object.
FILE_DELETED_EVENT | 定数 |
public static const FILE_DELETED_EVENT:String = "fileDeletedEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The FILE_DELETED_EVENT constant defines the event type. The event is dispatched when deleteFile is called on File and delete is completed on server.
FILE_DOWNLOAD_COMPLETED_EVENT | 定数 |
public static const FILE_DOWNLOAD_COMPLETED_EVENT:String = "filedownloadCompletedEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The FILE_DOWNLOAD_COMPLETED_EVENT constant defines the event type. The event is dispatched when content download on filesystem gets completed.
FILE_METADATA_FILLED_EVENT | 定数 |
public static const FILE_METADATA_FILLED_EVENT:String = "fileMetaDataFilledEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The FILE_METADATA_FILLED_EVENT constant defines the event type. The event is dispatched when fillMetaData is called on File and metadata is populated in File object.
FILE_UPLOAD_COMPLETED_EVENT | 定数 |
public static const FILE_UPLOAD_COMPLETED_EVENT:String = "fileUploadCompletedEvent"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
The FILE_UPLOAD_COMPLETED_EVENT constant defines the event type. The event is dispatched when content upload on server gets completed.
Tue Jun 12 2018, 10:34 AM Z