CursorWindow.GetInt(Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the value of the field at the specified row and column index as an
int
.
[Android.Runtime.Register("getInt", "(II)I", "GetGetInt_IIHandler")]
public virtual int GetInt (int row, int column);
[<Android.Runtime.Register("getInt", "(II)I", "GetGetInt_IIHandler")>]
abstract member GetInt : int * int -> int
override this.GetInt : int * int -> int
Parameters
- row
- Int32
The zero-based row index.
- column
- Int32
The zero-based column index.
Returns
The value of the field as an int
.
- Attributes
Remarks
Gets the value of the field at the specified row and column index as an int
.
The result is determined by invoking #getLong
and converting the result to int
.
Java documentation for android.database.CursorWindow.getInt(int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.