| Paquete | spark.events |
| Clase | public class GridCaretEvent |
| Herencia | GridCaretEvent Event Object |
| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
Elementos de API relacionados
| 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 | |
| newColumnIndex : int
The zero-based index of the column of the
caret position after it was changed. | GridCaretEvent | ||
| newRowIndex : int
The zero-based index of the row of the
caret position after it was changed. | GridCaretEvent | ||
| oldColumnIndex : int
The zero-based index of the column of the
caret position before it was changed. | GridCaretEvent | ||
| oldRowIndex : int
The zero-based index of the row of the
caret position before it was changed. | GridCaretEvent | ||
![]() | target : Object [solo lectura]
El destino del evento. | Event | |
![]() | type : String [solo lectura]
El tipo de evento. | Event | |
| Método | Definido por | ||
|---|---|---|---|
GridCaretEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldRowIndex:int = -1, oldColumnIndex:int = -1, newRowIndex:int = -1, newColumnIndex:int = -1)
Constructor. | GridCaretEvent | ||
![]() |
Duplica una instancia de la subclase Event. | Event | |
![]() |
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 | ||
|---|---|---|---|
| CARET_CHANGE : String = "caretChange" [estática]
The GridSelectionEvent.CARET_CHANGE constant defines
the value of the type property of the event object for a
caretChange event, which indicates that the current
caret position has just been changed. | GridCaretEvent | ||
newColumnIndex | propiedad |
public var newColumnIndex:int| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The zero-based index of the column of the caret position after it was changed.
If the selectionMode is SelectionMode.SINGLE_ROW or
SelectionMode.MULTIPLE_ROWS this will be -1 to indicate
it is not being used.
Elementos de API relacionados
newRowIndex | propiedad |
public var newRowIndex:int| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The zero-based index of the row of the caret position after it was changed.
Elementos de API relacionados
oldColumnIndex | propiedad |
public var oldColumnIndex:int| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The zero-based index of the column of the caret position before it was changed.
If the selectionMode is SelectionMode.SINGLE_ROW or
SelectionMode.MULTIPLE_ROWS, this valueis -1 to indicate
it is not being used.
Elementos de API relacionados
oldRowIndex | propiedad |
public var oldRowIndex:int| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The zero-based index of the row of the caret position before it was changed.
El valor predeterminado es -1.
Elementos de API relacionados
GridCaretEvent | () | Información sobre |
public function GridCaretEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldRowIndex:int = -1, oldColumnIndex:int = -1, newRowIndex:int = -1, newColumnIndex:int = -1)| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
Constructor.
Parámetrostype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false) — Specifies whether the event can bubble
up the display list hierarchy.
| |
cancelable:Boolean (default = false) — Specifies whether the behavior
associated with the event can be prevented.
| |
oldRowIndex:int (default = -1) — The zero-based column index of the caret position
before the change. If the selectionMode is either
SelectionMode.SINGLE_ROW or
SelectionMode.MULTIPLE_ROWS, this is -1.
| |
oldColumnIndex:int (default = -1) — The zero-based row index of the caret position before
the change.
| |
newRowIndex:int (default = -1) — The zero-based column index of the caret position
after the change. If the selectionMode is either
SelectionMode.SINGLE_ROW or
SelectionMode.MULTIPLE_ROWS, this is -1.
| |
newColumnIndex:int (default = -1) — The zero-based row index of the caret position after
the change.
|
Elementos de API relacionados
CARET_CHANGE | Constante |
public static const CARET_CHANGE:String = "caretChange"| Versión del lenguaje: | ActionScript 3.0 |
| Versión de producto: | Flex 4.5 |
| Versiones de motor de ejecución: | Flash Player 10, AIR 2.5 |
The GridSelectionEvent.CARET_CHANGE constant defines
the value of the type property of the event object for a
caretChange event, which indicates that the current
caret position has just been changed.
The properties of the event object have the following values:
| Property | Value |
|---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget. |
newColumnIndex | The zero-based column
index of the caret position after it was changed. It is -1 if
the selectionMode is row-based. |
newRowIndex | The zero-based row index of the caret position after it was changed. |
oldColumnIndex | The zero-based column
index of the caret position before it was changed. It is -1 if
the selectionMode is row-based. |
oldRowIndex | The zero-based row index of the caret position before it was changed. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | GirdCaretEvent.CARET_CHANGE |
Tue Jun 12 2018, 02:12 PM Z
Ocultar propiedades públicas heredadas
Mostrar propiedades públicas heredadas