Android.Util.SparseArray<E>.ValueAt Method
Given an index in the range 0...size()-1, returns the value from the indexth key-value mapping that this SparseArray stores.

Syntax

[Android.Runtime.Register("valueAt", "(I)Ljava/lang/Object;", "")]
public virtual E ValueAt (int index)

Parameters

index
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Given an index in the range 0...size()-1, returns the value from the indexth key-value mapping that this SparseArray stores.

The values corresponding to indices in ascending order are guaranteed to be associated with keys in ascending order, e.g., valueAt(0) will return the value associated with the smallest key and valueAt(size()-1) will return the value associated with the largest key.

[Android Documentation]

Requirements

Namespace: Android.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1