ICanvasRenderingContext2D.Fill

Fill()

Fills the subpaths with the current fill style and default algorithm CanvasFillRule.Nonzero.

public void Fill()

See Also


Fill(CanvasFillRule)

Fills the subpaths with the current fill style.

public void Fill(CanvasFillRule fillRule)
ParameterTypeDescription
fillRuleCanvasFillRuleThe algorithm by which to determine if a point is inside a path or outside a path.

See Also


Fill(Path2D)

Fills the subpaths with the current fill style and default algorithm CanvasFillRule.Nonzero.

public void Fill(Path2D path)
ParameterTypeDescription
pathPath2DA Path2D path to fill.

See Also


Fill(Path2D, CanvasFillRule)

Fills the subpaths with the current fill style.

public void Fill(Path2D path, CanvasFillRule fillRule)
ParameterTypeDescription
pathPath2DA Path2D path to fill.
fillRuleCanvasFillRuleThe algorithm by which to determine if a point is inside a path or outside a path.

See Also