Android.Animation.ObjectAnimator.OfInt Method
Constructs and returns an ObjectAnimator that animates coordinates along a Path using two properties.

Syntax

[Android.Runtime.Register("ofInt", "(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;Landroid/graphics/Path;)Landroid/animation/ObjectAnimator;", "")]
public static ObjectAnimator OfInt (Java.Lang.Object target, string xPropertyName, string yPropertyName, Android.Graphics.Path path)

Parameters

target
The object whose properties are to be animated. This object should have public methods on it called setNameX() and setNameY, where nameX and nameY are the value of xPropertyName and yPropertyName parameters, respectively.
xPropertyName
The name of the property for the x coordinate being animated.
yPropertyName
The name of the property for the y coordinate being animated.
path
The Path to animate values along.

Returns

Documentation for this section has not yet been entered.

Remarks

Constructs and returns an ObjectAnimator that animates coordinates along a Path using two properties. A Path animation moves in two dimensions, animating coordinates (x, y) together to follow the line. In this variation, the coordinates are integers that are set to separate properties designated by xPropertyName and yPropertyName.

[Android Documentation]

Requirements

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