Pacote | mx.core |
Classe | public class DragSource |
Herança | DragSource Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Each format of data is identified with a string. The
hasFormat()
method is used to determine if the object has
data in that format. The dataForFormat()
method is used
to retrieve the data in the specified format.
Data can be added directly using the addData()
method,
or indirectly using the addHandler()
method. The
addHandler()
method registers a callback that will be called
if the data is requested. This is useful for adding data in a non-native
format that may require large computations or conversions. For example,
if you have raw sound data you can add an MP3 format handler. The MP3
conversion will only be done if the MP3 data is requested.
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
formats : Array [somente leitura]
Contains the formats of the drag data, as an Array of Strings. | DragSource |
Método | Definido por | ||
---|---|---|---|
Constructor. | DragSource | ||
Adds data and a corresponding format String to the drag source. | DragSource | ||
Adds a handler that is called when data
for the specified format is requested. | DragSource | ||
Retrieves the data for the specified format. | DragSource | ||
Returns true if the data source contains
the requested format; otherwise, it returns false. | DragSource | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
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 | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
formats | propriedade |
formats:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Contains the formats of the drag data, as an Array of Strings.
Set this property using the addData()
or addHandler()
methods.
The default value depends on data added to the DragSource object.
Implementação
public function get formats():Array
DragSource | () | Construtor |
public function DragSource()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
addData | () | método |
public function addData(data:Object, format:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Adds data and a corresponding format String to the drag source. This method does not return a value.
Parâmetros
data:Object — Object that specifies the drag data.
This can be any object, such as a String, a DataProvider, and so on.
| |
format:String — String that specifies a label that describes
the format for this data.
|
addHandler | () | método |
public function addHandler(handler:Function, format:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Adds a handler that is called when data for the specified format is requested. This is useful when dragging large amounts of data. The handler is only called if the data is requested. This method does not return a value.
Parâmetros
handler:Function — Function that specifies the handler
called to request the data.
This function must return the data in the specified format.
| |
format:String — String that specifies the format for this data.
|
dataForFormat | () | método |
public function dataForFormat(format:String):Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Retrieves the data for the specified format.
If the data was added with the addData()
method,
it is returned directly.
If the data was added with the addHandler()
method,
the handler function is called to return the data.
Parâmetros
format:String — String that specifies a label that describes
the format for the data to return. This string can be a custom value
if you are creating a custom drop target with the addData() method.
List-based controls have predefined values
for the |
Object — An Object
containing the data in the requested format.
If you drag multiple items, the returned value is an Array.
For a List-based control, the returned value is always an Array,
even if it contains a single item.
|
hasFormat | () | método |
public function hasFormat(format:String):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Returns true
if the data source contains
the requested format; otherwise, it returns false
.
Parâmetros
format:String — String that specifies a label that describes the format
for the data.
|
Boolean — true if the data source contains
the requested format.
|
Wed Jun 13 2018, 11:10 AM Z