fill method

fill

Fills the current path with the specified fill rule.

def fill(self, mode):
    ...
ParameterTypeDescription
modeaspose.svg.drawing.FillRuleThe fill rule to use for filling the path.

fill

Fills the specified path with the specified fill rule.

def fill(self, path, mode):
    ...
ParameterTypeDescription
pathIPathThe path to fill.
modeaspose.svg.drawing.FillRuleThe fill rule to use for filling the path. See FillRule.

See Also