Paint.GetFillPath(Path, Path) 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.
Applies any/all effects (patheffect, stroking) to src, returning the result in dst.
[Android.Runtime.Register("getFillPath", "(Landroid/graphics/Path;Landroid/graphics/Path;)Z", "GetGetFillPath_Landroid_graphics_Path_Landroid_graphics_Path_Handler")]
public virtual bool GetFillPath (Android.Graphics.Path? src, Android.Graphics.Path? dst);
[<Android.Runtime.Register("getFillPath", "(Landroid/graphics/Path;Landroid/graphics/Path;)Z", "GetGetFillPath_Landroid_graphics_Path_Landroid_graphics_Path_Handler")>]
abstract member GetFillPath : Android.Graphics.Path * Android.Graphics.Path -> bool
override this.GetFillPath : Android.Graphics.Path * Android.Graphics.Path -> bool
Parameters
- src
- Path
input path
- dst
- Path
output path (may be the same as src)
Returns
true if the path should be filled, or false if it should be drawn with a hairline (width == 0)
- Attributes
Remarks
Applies any/all effects (patheffect, stroking) to src, returning the result in dst. The result is that drawing src with this paint will be the same as drawing dst with a default paint (at least from the geometric perspective).
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.