Click or drag to resize
CanvasFigureLoop Enumeration
Specifies whether the figure is open or closed. This affects the appearance of fills and strokes, as well as geometry operations.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public enum CanvasFigureLoop
Members
  Member nameValueDescription
Open0Specifies that the figure may not necessarily begin and end with the same point.
Closed1Specifies that the figure will be automatically closed, by connecting its end point back to its start point.
Remarks

A closed figure, when drawn with a thick line, can appear differently from an open figure that is simply built to start and end with the same point. The closed figure will have a smooth, continuous line join where the figure starts and ends.

An open figure may also have start and end caps visible at the start and end, while a closed figure will not.

See Also