is_point_in_path method

is_point_in_path

Determines whether the specified point is inside the current path using the specified fill rule.

Returns

true if the point is inside the path; otherwise, false.

def is_point_in_path(self, x, y, mode):
    ...
ParameterTypeDescription
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.
modeaspose.svg.drawing.FillRuleThe fill rule to use for testing. See FillRule.

is_point_in_path

Determines whether the specified point is inside the specified path using the specified fill rule.

Returns

true if the point is inside the path; otherwise, false.

def is_point_in_path(self, path, x, y, mode):
    ...
ParameterTypeDescription
pathIPathThe path to test.See IPath.
xfloatThe x-coordinate of the point to test.
yfloatThe y-coordinate of the point to test.
modeaspose.svg.drawing.FillRuleThe fill rule to use for testing. See FillRule.

See Also