Pacote | mx.collections |
Classe | public class CursorBookmark |
Herança | CursorBookmark Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
ICollectionView
. Bookmarks are used to return a cursor to
an absolute position within the ICollectionView
.
Elementos da API relacionados
Propriedades públicas
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 | ||
CURRENT : CursorBookmark [estático] [somente leitura]
A bookmark representing the current item for the IViewCursor in
an ICollectionView. | CursorBookmark | ||
FIRST : CursorBookmark [estático] [somente leitura]
A bookmark for the first item in an ICollectionView. | CursorBookmark | ||
LAST : CursorBookmark [estático] [somente leitura]
A bookmark for the last item in an ICollectionView. | CursorBookmark | ||
value : Object [somente leitura]
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 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 |
Detalhes da propriedade
CURRENT | propriedade |
CURRENT:CursorBookmark
[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 |
A bookmark representing the current item for the IViewCursor
in
an ICollectionView
.
Implementação
public static function get CURRENT():CursorBookmark
FIRST | propriedade |
FIRST:CursorBookmark
[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 |
A bookmark for the first item in an ICollectionView
.
Implementação
public static function get FIRST():CursorBookmark
LAST | propriedade |
LAST:CursorBookmark
[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 |
A bookmark for the last item in an ICollectionView
.
If the view has no items, the cursor is at this bookmark.
Implementação
public static function get LAST():CursorBookmark
value | propriedade |
value:Object
[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 |
The underlying marker representation of the bookmark.
This value is generally understood only by the IViewCursor
or ICollectionView
implementation.
Implementação
public function get value():Object
Detalhes do construtor
CursorBookmark | () | Construtor |
Detalhes do método
getViewIndex | () | método |
public function getViewIndex():int
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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.
Retornaint — 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.
|
Wed Jun 13 2018, 11:10 AM Z