Pacote | com.adobe.livecycle.content |
Classe | public class FileEvent |
Herança | FileEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Propriedade | Definido por | ||
---|---|---|---|
bubbles : Boolean [somente leitura]
Indica se um evento é do tipo bubbling. | Event | ||
cancelable : Boolean [somente leitura]
Indica se o comportamento associado ao evento pode ser impedido. | Event | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
currentTarget : Object [somente leitura]
O objeto que está processando ativamente o objeto Event com um ouvinte de evento. | Event | ||
eventPhase : uint [somente leitura]
A fase atual no fluxo de eventos. | Event | ||
filedata : ByteArray [somente leitura]
Filedata is populated when API File.downloadContentToByteArray is invoked. | FileEvent | ||
target : Object [somente leitura]
O destino de evento. | Event | ||
type : String [somente leitura]
O tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
Constructor. | FileEvent | ||
[substituir]
Creates clone of a FileEvent instance. | FileEvent | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna uma string que contém todas as propriedades do objeto Event. | Event | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
FILE_CONTENT_CHANGE_EVENT : String = "fileContentChangeEvent" [estático]
The FILE_CONTENT_CHANGE_EVENT constant defines the event type. | FileEvent | ||
FILE_DELETED_EVENT : String = "fileDeletedEvent" [estático]
The FILE_DELETED_EVENT constant defines the event type. | FileEvent | ||
FILE_DOWNLOAD_COMPLETED_EVENT : String = "filedownloadCompletedEvent" [estático]
The FILE_DOWNLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent | ||
FILE_METADATA_FILLED_EVENT : String = "fileMetaDataFilledEvent" [estático]
The FILE_METADATA_FILLED_EVENT constant defines the event type. | FileEvent | ||
FILE_UPLOAD_COMPLETED_EVENT : String = "fileUploadCompletedEvent" [estático]
The FILE_UPLOAD_COMPLETED_EVENT constant defines the event type. | FileEvent |
filedata | propriedade |
filedata:ByteArray
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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
.
Implementação
public function get filedata():ByteArray
FileEvent | () | Construtor |
public function FileEvent(eventName:String, filedata:ByteArray = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | 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 |
FILE_CONTENT_CHANGE_EVENT | Constante |
public static const FILE_CONTENT_CHANGE_EVENT:String = "fileContentChangeEvent"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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 | Constante |
public static const FILE_DELETED_EVENT:String = "fileDeletedEvent"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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 | Constante |
public static const FILE_DOWNLOAD_COMPLETED_EVENT:String = "filedownloadCompletedEvent"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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 | Constante |
public static const FILE_METADATA_FILLED_EVENT:String = "fileMetaDataFilledEvent"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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 | Constante |
public static const FILE_UPLOAD_COMPLETED_EVENT:String = "fileUploadCompletedEvent"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de 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.
Wed Jun 13 2018, 11:10 AM Z