Pacchetto | com.adobe.livecycle.content |
Classe | public class FileEvent |
Ereditarietà | FileEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
cancelable : Boolean [sola lettura]
Indica se il comportamento associato all'evento può essere impedito. | Event | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
currentTarget : Object [sola lettura]
L'oggetto che elabora attivamente l'oggetto Event con un listener di eventi. | Event | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
filedata : ByteArray [sola lettura]
Filedata is populated when API File.downloadContentToByteArray is invoked. | FileEvent | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | FileEvent | ||
[override]
Creates clone of a FileEvent instance. | FileEvent | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce una stringa che contiene tutte le proprietà dell'oggetto Event. | Event | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costante | Definito da | ||
---|---|---|---|
FILE_CONTENT_CHANGE_EVENT : String = "fileContentChangeEvent" [statico]
The FILE_CONTENT_CHANGE_EVENT constant defines the event type. | FileEvent | ||
FILE_DELETED_EVENT : String = "fileDeletedEvent" [statico]
The FILE_DELETED_EVENT constant defines the event type. | FileEvent | ||
FILE_DOWNLOAD_COMPLETED_EVENT : String = "filedownloadCompletedEvent" [statico]
The FILE_DOWNLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent | ||
FILE_METADATA_FILLED_EVENT : String = "fileMetaDataFilledEvent" [statico]
The FILE_METADATA_FILLED_EVENT constant defines the event type. | FileEvent | ||
FILE_UPLOAD_COMPLETED_EVENT : String = "fileUploadCompletedEvent" [statico]
The FILE_UPLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent |
filedata | proprietà |
filedata:ByteArray
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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
.
Implementazione
public function get filedata():ByteArray
FileEvent | () | Funzione di costruzione |
public function FileEvent(eventName:String, filedata:ByteArray = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Constructor.
ParametrieventName:String — name of the event
| |
filedata:ByteArray (default = null ) — binary content in case when API File.downloadContentToByteArray is invoked.
|
clone | () | metodo |
override public function clone():Event
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Creates clone of a FileEvent instance.
RestituisceEvent — A copy of the of FileEvent instance.
|
FILE_CONTENT_CHANGE_EVENT | Costante |
public static const FILE_CONTENT_CHANGE_EVENT:String = "fileContentChangeEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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 | Costante |
public static const FILE_DELETED_EVENT:String = "fileDeletedEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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 | Costante |
public static const FILE_DOWNLOAD_COMPLETED_EVENT:String = "filedownloadCompletedEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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 | Costante |
public static const FILE_METADATA_FILLED_EVENT:String = "fileMetaDataFilledEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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 | Costante |
public static const FILE_UPLOAD_COMPLETED_EVENT:String = "fileUploadCompletedEvent"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Contenuti 10 |
Versioni runtime: | 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:44 PM Z