ICanvasRenderingContext2D.IsPointInStroke
Contents
[
Hide
]IsPointInStroke(double, double)
Reports whether or not the specified point is inside the area contained by the stroking of a path.
public bool IsPointInStroke(double x, double y)
Parameter | Type | Description |
---|---|---|
x | Double | The X coordinate of the point to check. |
y | Double | The Y coordinate of the point to check. |
Return Value
Returns true if the point is inside the area contained by the stroking of a path, otherwise false.
See Also
- interface ICanvasRenderingContext2D
- namespace Aspose.Html.Dom.Canvas
- assembly Aspose.HTML
IsPointInStroke(Path2D, double, double)
Reports whether or not the specified point is inside the area contained by the stroking of a path.
public bool IsPointInStroke(Path2D path, double x, double y)
Parameter | Type | Description |
---|---|---|
path | Path2D | A Path2D path to check. |
x | Double | The X coordinate of the point to check. |
y | Double | The Y coordinate of the point to check. |
Return Value
Returns true if the point is inside the area contained by the stroking of a path, otherwise false.
See Also
- class Path2D
- interface ICanvasRenderingContext2D
- namespace Aspose.Html.Dom.Canvas
- assembly Aspose.HTML