Pakiet | spark.events |
Klasa | public class GridCaretEvent |
Dziedziczenie | GridCaretEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 2.5 |
Powiązane elementy interfejsu API
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
cancelable : Boolean [tylko do odczytu]
Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem. | Event | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
currentTarget : Object [tylko do odczytu]
Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń. | Event | ||
eventPhase : uint [tylko do odczytu]
Bieżąca faza przepływu zdarzeń. | 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 [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
GridCaretEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldRowIndex:int = -1, oldColumnIndex:int = -1, newRowIndex:int = -1, newColumnIndex:int = -1)
Constructor. | GridCaretEvent | ||
Powiela instancję podklasy Event. | Event | ||
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0. | Event | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault(). | Event | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane. | Event | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim. | Event | ||
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń. | Event | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu Event. | Event | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
Stała | Zdefiniowane przez | ||
---|---|---|---|
CARET_CHANGE : String = "caretChange" [statyczny]
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 | właściwość |
public var newColumnIndex:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | 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.
Powiązane elementy interfejsu API
newRowIndex | właściwość |
public var newRowIndex:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 2.5 |
The zero-based index of the row of the caret position after it was changed.
Powiązane elementy interfejsu API
oldColumnIndex | właściwość |
public var oldColumnIndex:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | 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.
Powiązane elementy interfejsu API
oldRowIndex | właściwość |
public var oldRowIndex:int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 2.5 |
The zero-based index of the row of the caret position before it was changed.
Wartością domyślną jest -1.
Powiązane elementy interfejsu API
GridCaretEvent | () | Konstruktor |
public function GridCaretEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, oldRowIndex:int = -1, oldColumnIndex:int = -1, newRowIndex:int = -1, newColumnIndex:int = -1)
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | Flash Player 10, AIR 2.5 |
Constructor.
Parametrytype: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.
|
Powiązane elementy interfejsu API
CARET_CHANGE | Stała |
public static const CARET_CHANGE:String = "caretChange"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Flex 4.5 |
Wersje środowiska wykonawczego: | 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, 12:06 PM Z