MotionEvent.GetHistoricalSize 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.
Overloads
GetHistoricalSize(Int32) |
|
GetHistoricalSize(Int32, Int32) |
Returns a historical size coordinate, as per |
GetHistoricalSize(Int32)
#getHistoricalSize(int, int)
for the first pointer index (may be an
arbitrary pointer identifier).
[Android.Runtime.Register("getHistoricalSize", "(I)F", "")]
public float GetHistoricalSize (int pos);
[<Android.Runtime.Register("getHistoricalSize", "(I)F", "")>]
member this.GetHistoricalSize : int -> single
Parameters
- pos
- Int32
Which historical value to return; must be less than
#getHistorySize
Returns
- Attributes
Remarks
#getHistoricalSize(int, int)
for the first pointer index (may be an arbitrary pointer identifier).
Java documentation for android.view.MotionEvent.getHistoricalSize(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.
See also
Applies to
GetHistoricalSize(Int32, Int32)
Returns a historical size coordinate, as per #getSize(int)
, that
occurred between this event and the previous event for the given pointer.
[Android.Runtime.Register("getHistoricalSize", "(II)F", "")]
public float GetHistoricalSize (int pointerIndex, int pos);
[<Android.Runtime.Register("getHistoricalSize", "(II)F", "")>]
member this.GetHistoricalSize : int * int -> single
Parameters
- pointerIndex
- Int32
Raw index of pointer to retrieve. Value may be from 0
(the first pointer that is down) to #getPointerCount()
-1.
- pos
- Int32
Which historical value to return; must be less than
#getHistorySize
Returns
- Attributes
Remarks
Returns a historical size coordinate, as per #getSize(int)
, that occurred between this event and the previous event for the given pointer. Only applies to ACTION_MOVE events.
Java documentation for android.view.MotionEvent.getHistoricalSize(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.