PatternPathMotion.PatternPath 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 Path defining a pattern of motion between two coordinates. -or- Sets the Path defining a pattern of motion between two coordinates.
public virtual Android.Graphics.Path? PatternPath { [Android.Runtime.Register("getPatternPath", "()Landroid/graphics/Path;", "GetGetPatternPathHandler")] get; [Android.Runtime.Register("setPatternPath", "(Landroid/graphics/Path;)V", "GetSetPatternPath_Landroid_graphics_Path_Handler")] set; }
[<get: Android.Runtime.Register("getPatternPath", "()Landroid/graphics/Path;", "GetGetPatternPathHandler")>]
[<set: Android.Runtime.Register("setPatternPath", "(Landroid/graphics/Path;)V", "GetSetPatternPath_Landroid_graphics_Path_Handler")>]
member this.PatternPath : Android.Graphics.Path with get, set
Property Value
the Path defining a pattern of motion between two coordinates.
- Attributes
Remarks
Property getter documentation:
Returns the Path defining a pattern of motion between two coordinates. The pattern will be translated, rotated, and scaled to fit between the start and end points. The pattern must not be empty and must have the end point differ from the start point.
Java documentation for android.transition.PatternPathMotion.getPatternPath()
.
Property setter documentation:
Sets the Path defining a pattern of motion between two coordinates. The pattern will be translated, rotated, and scaled to fit between the start and end points. The pattern must not be empty and must have the end point differ from the start point.
Java documentation for android.transition.PatternPathMotion.setPatternPath(android.graphics.Path)
.
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.