Path Constructors
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
Path() |
Create an empty path |
Path(Path) |
Create a new path, copying the contents from the src path. |
Path(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Path()
Create an empty path
[Android.Runtime.Register(".ctor", "()V", "")]
public Path ();
- Attributes
Remarks
Create an empty path
Java documentation for android.graphics.Path.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.
Applies to
Path(Path)
Create a new path, copying the contents from the src path.
[Android.Runtime.Register(".ctor", "(Landroid/graphics/Path;)V", "")]
public Path (Android.Graphics.Path? src);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/Path;)V", "")>]
new Android.Graphics.Path : Android.Graphics.Path -> Android.Graphics.Path
Parameters
- src
- Path
The path to copy from when initializing the new path
- Attributes
Remarks
Create a new path, copying the contents from the src path.
Java documentation for android.graphics.Path.Path(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.
Applies to
Path(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected Path (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Graphics.Path : nativeint * Android.Runtime.JniHandleOwnership -> Android.Graphics.Path
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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.