Pacote | spark.collections |
Classe | public class NumericDataProvider |
Herança | NumericDataProvider OnDemandEventDispatcher Object |
Implementações | IList |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
minimum
and maximum
properties. The stepSize
property defines the difference between
an item and the next item.
This class is used primarily as a data provider for the SpinnerList control; for example:
<s:SpinnerList> <s:dataProvider> <s:NumericDataProvider minimum="0" maximum="23" stepSize="1"/> </s:dataProvider> </s:SpinnerList>
The advantage of this class is that the item values are calculated on demand, instead of stored.
Because the values are calculated instead of stored, the addItem()
, addItemAt()
,
removeAll()
, removeItemAt()
, itemUpdated()
and setItemAt()
IList methods are not
supported.
Elementos da API relacionados
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 | ||
length : int [somente leitura]
The number of items in this collection. | NumericDataProvider | ||
maximum : Number
The value of the last item. | NumericDataProvider | ||
minimum : Number
The value of the first item. | NumericDataProvider | ||
stepSize : Number
The stepSize property controls the values of items between the first and last items. | NumericDataProvider |
Método | Definido por | ||
---|---|---|---|
Constructor. | NumericDataProvider | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | OnDemandEventDispatcher | ||
This function is not supported. | NumericDataProvider | ||
This function is not supported. | NumericDataProvider | ||
Dispatches an event into the event flow. | OnDemandEventDispatcher | ||
Gets the item at the specified index. | NumericDataProvider | ||
Returns the index of the item if it is in the list such that
getItemAt(index) == item. | NumericDataProvider | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | OnDemandEventDispatcher | ||
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 | ||
itemUpdated(item:Object, property:Object = null, oldValue:Object = null, newValue:Object = null):void
This function is not supported. | NumericDataProvider | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
This function is not supported. | NumericDataProvider | ||
Removes a listener from the EventDispatcher object. | OnDemandEventDispatcher | ||
This function is not supported. | NumericDataProvider | ||
This function is not supported. | NumericDataProvider | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Returns an Array that is populated in the same order as the IList
implementation. | NumericDataProvider | ||
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 | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | OnDemandEventDispatcher |
length | propriedade |
maximum | propriedade |
maximum:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
The value of the last item. This value must be larger than the minimum value.
O valor padrão é 100.
Implementação
public function get maximum():Number
public function set maximum(value:Number):void
minimum | propriedade |
minimum:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
The value of the first item. This value must be smaller than the minimum value.
O valor padrão é 0.
Implementação
public function get minimum():Number
public function set minimum(value:Number):void
stepSize | propriedade |
stepSize:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
The stepSize property controls the values of items between the first and last items.
For each item, the value is calculated as the sum of the minimum
and the item's index multiplied by this property.
For example, if minimum
is 10, maximum
is 20, and this property is 3, then the
item values of this data provider are 10, 13, 16, 19, and 20.
O valor padrão é 1.
Implementação
public function get stepSize():Number
public function set stepSize(value:Number):void
NumericDataProvider | () | Construtor |
public function NumericDataProvider()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
Constructor.
addItem | () | método |
addItemAt | () | método |
getItemAt | () | método |
public function getItemAt(index:int, prefetch:int = 0):Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
Gets the item at the specified index.
Parâmetros
index:int — The index in the list from which to retrieve the item.
| |
prefetch:int (default = 0 ) — An int indicating both the direction
and number of items to fetch during the request if the item is
not local.
|
Object — The item at that index, or null if there is none.
|
getItemIndex | () | método |
public function getItemIndex(item:Object):int
Returns the index of the item if it is in the list such that getItemAt(index) == item.
Note: unlike IViewCursor.findxxx()
methods,
The getItemIndex()
method cannot take a parameter with
only a subset of the fields in the item being serched for;
this method always searches for an item that exactly matches
the input parameter.
Parâmetros
item:Object — The item to find.
|
int — The index of the item, or -1 if the item is not in the list.
|
itemUpdated | () | método |
public function itemUpdated(item:Object, property:Object = null, oldValue:Object = null, newValue:Object = null):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
This function is not supported.
Parâmetros
item:Object | |
property:Object (default = null )
| |
oldValue:Object (default = null )
| |
newValue:Object (default = null )
|
removeAll | () | método |
public function removeAll():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 4.6 |
Versões de runtime: | Flash Player 11, AIR 3 |
This function is not supported.
removeItemAt | () | método |
setItemAt | () | método |
toArray | () | método |
Wed Jun 13 2018, 11:10 AM Z