Paquete | mx.collections |
Clase | public class CursorBookmark |
Herencia | CursorBookmark Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
ICollectionView
. Bookmarks are used to return a cursor to
an absolute position within the ICollectionView
.
Elementos de API relacionados
Propiedades públicas
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
CURRENT : CursorBookmark [estática] [solo lectura]
A bookmark representing the current item for the IViewCursor in
an ICollectionView. | CursorBookmark | ||
FIRST : CursorBookmark [estática] [solo lectura]
A bookmark for the first item in an ICollectionView. | CursorBookmark | ||
LAST : CursorBookmark [estática] [solo lectura]
A bookmark for the last item in an ICollectionView. | CursorBookmark | ||
value : Object [solo lectura]
The underlying marker representation of the bookmark. | CursorBookmark |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
CursorBookmark(value:Object)
Creates a new instance of a bookmark with the specified value. | CursorBookmark | ||
Gets the approximate index of the item represented by this bookmark
in its view. | CursorBookmark | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre propiedades
CURRENT | propiedad |
CURRENT:CursorBookmark
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
A bookmark representing the current item for the IViewCursor
in
an ICollectionView
.
Implementación
public static function get CURRENT():CursorBookmark
FIRST | propiedad |
FIRST:CursorBookmark
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
A bookmark for the first item in an ICollectionView
.
Implementación
public static function get FIRST():CursorBookmark
LAST | propiedad |
LAST:CursorBookmark
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
A bookmark for the last item in an ICollectionView
.
If the view has no items, the cursor is at this bookmark.
Implementación
public static function get LAST():CursorBookmark
value | propiedad |
value:Object
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The underlying marker representation of the bookmark.
This value is generally understood only by the IViewCursor
or ICollectionView
implementation.
Implementación
public function get value():Object
Información sobre constructores
CursorBookmark | () | Información sobre |
Información sobre métodos
getViewIndex | () | método |
public function getViewIndex():int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Gets the approximate index of the item represented by this bookmark in its view. If the item has been paged out, this method could throw an ItemPendingError.
Valor devueltoint — The index of the item. If the item is not in the current view, this method returns
-1. This method also returns -1 if index-based location is not possible.
|
Tue Jun 12 2018, 02:12 PM Z