Example #1
0
 /// <summary>
 /// Tests whether the given point is inside the area that would be affected if Stroke were called on this Context.
 /// </summary>
 /// <returns>
 /// <c>true</c> if the specified point would be in the stroke; otherwise, <c>false</c>.
 /// </returns>
 /// <param name='x'>
 /// The x coordinate.
 /// </param>
 /// <param name='y'>
 /// The y coordinate.
 /// </param>
 public bool IsPointInStroke(double x, double y)
 {
     return(handler.IsPointInStroke(Backend, x, y));
 }