ICanvas.IsPointInPath
Contents
[
Hide
]IsPointInPath(float, float, FillRule)
Determines whether the specified point is inside the current path using the specified fill rule.
public bool IsPointInPath(float x, float y, FillRule mode)
Parameter | Type | Description |
---|---|---|
x | Single | The x-coordinate of the point to test. |
y | Single | The y-coordinate of the point to test. |
mode | FillRule | The fill rule to use for testing. See FillRule . |
Return Value
true
if the point is inside the path; otherwise, false
.
See Also
- enum FillRule
- interface ICanvas
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG
IsPointInPath(IPath, float, float, FillRule)
Determines whether the specified point is inside the specified path using the specified fill rule.
public bool IsPointInPath(IPath path, float x, float y, FillRule mode)
Parameter | Type | Description |
---|---|---|
path | IPath | The path to test.See IPath . |
x | Single | The x-coordinate of the point to test. |
y | Single | The y-coordinate of the point to test. |
mode | FillRule | The fill rule to use for testing. See FillRule . |
Return Value
true
if the point is inside the path; otherwise, false
.
See Also
- interface IPath
- enum FillRule
- interface ICanvas
- namespace Aspose.Svg.Rendering
- assembly Aspose.SVG