Exemplo n.º 1
0
 /// <summary>
 /// Indicates whether the geometry's fill contains the specified point.
 /// </summary>
 /// <param name="point">The point.</param>
 /// <returns><c>true</c> if the geometry contains the point; otherwise, <c>false</c>.</returns>
 public bool FillContains(Point point)
 {
     return(PlatformImpl.FillContains(point));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Indicates whether the geometry's fill contains the specified point.
 /// </summary>
 /// <param name="point">The point.</param>
 /// <returns><c>true</c> if the geometry contains the point; otherwise, <c>false</c>.</returns>
 public bool FillContains(Point point)
 {
     return(PlatformImpl?.FillContains(point) == true);
 }