GridLayoutAnimationController.DirectionPriority Property
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.
Returns the direction priority for the animation. -or- Specifies the direction priority of the animation.
public virtual Android.Views.Animations.Priority DirectionPriority { [Android.Runtime.Register("getDirectionPriority", "()I", "GetGetDirectionPriorityHandler")] get; [Android.Runtime.Register("setDirectionPriority", "(I)V", "GetSetDirectionPriority_IHandler")] set; }
[<get: Android.Runtime.Register("getDirectionPriority", "()I", "GetGetDirectionPriorityHandler")>]
[<set: Android.Runtime.Register("setDirectionPriority", "(I)V", "GetSetDirectionPriority_IHandler")>]
member this.DirectionPriority : Android.Views.Animations.Priority with get, set
Property Value
the priority of the animation direction
- Attributes
Remarks
Property getter documentation:
Returns the direction priority for the animation. The priority can be either #PRIORITY_NONE
, #PRIORITY_COLUMN
or #PRIORITY_ROW
.
Java documentation for android.view.animation.GridLayoutAnimationController.getDirectionPriority()
.
Property setter documentation:
Specifies the direction priority of the animation. For instance, #PRIORITY_COLUMN
will give priority to columns: the animation will first play on the column, then on the rows.Z
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.