Paquete | com.adobe.livecycle.content |
Clase | public class FileEvent |
Herencia | FileEvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : uint [solo lectura]
La fase actual en el flujo del evento. | Event | ||
filedata : ByteArray [solo lectura]
Filedata is populated when API File.downloadContentToByteArray is invoked. | FileEvent | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
Constructor. | FileEvent | ||
[override]
Creates clone of a FileEvent instance. | FileEvent | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
FILE_CONTENT_CHANGE_EVENT : String = "fileContentChangeEvent" [estática]
The FILE_CONTENT_CHANGE_EVENT constant defines the event type. | FileEvent | ||
FILE_DELETED_EVENT : String = "fileDeletedEvent" [estática]
The FILE_DELETED_EVENT constant defines the event type. | FileEvent | ||
FILE_DOWNLOAD_COMPLETED_EVENT : String = "filedownloadCompletedEvent" [estática]
The FILE_DOWNLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent | ||
FILE_METADATA_FILLED_EVENT : String = "fileMetaDataFilledEvent" [estática]
The FILE_METADATA_FILLED_EVENT constant defines the event type. | FileEvent | ||
FILE_UPLOAD_COMPLETED_EVENT : String = "fileUploadCompletedEvent" [estática]
The FILE_UPLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent |
filedata | propiedad |
filedata:ByteArray
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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
.
Implementación
public function get filedata():ByteArray
FileEvent | () | Información sobre |
public function FileEvent(eventName:String, filedata:ByteArray = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Constructor.
ParámetroseventName:String — name of the event
| |
filedata:ByteArray (default = null ) — binary content in case when API File.downloadContentToByteArray is invoked.
|
clone | () | método |
override public function clone():Event
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Creates clone of a FileEvent instance.
Valor devueltoEvent — A copy of the of FileEvent instance.
|
FILE_CONTENT_CHANGE_EVENT | Constante |
public static const FILE_CONTENT_CHANGE_EVENT:String = "fileContentChangeEvent"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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 | Constante |
public static const FILE_DELETED_EVENT:String = "fileDeletedEvent"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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 | Constante |
public static const FILE_DOWNLOAD_COMPLETED_EVENT:String = "filedownloadCompletedEvent"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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 | Constante |
public static const FILE_METADATA_FILLED_EVENT:String = "fileMetaDataFilledEvent"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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 | Constante |
public static const FILE_UPLOAD_COMPLETED_EVENT:String = "fileUploadCompletedEvent"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versiones de motor de ejecución: | 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, 02:12 PM Z