Enum SvgStrokeLineJoin
- Namespace
- Svg
- Assembly
- Svg.dll
Specifies the shape to be used at the corners of paths or basic shapes when they are stroked.
[TypeConverter(typeof(SvgStrokeLineJoinConverter))]
public enum SvgStrokeLineJoin
Fields
Arcs = 5The corners of the paths are joined by arcs that have the same curvature as the curves they join. This is a new value that might not be supported by most browsers.
Bevel = 4The corners of the paths are "flattened".
Inherit = 0The value is inherited from the parent element.
Miter = 1The corners of the paths are joined sharply.
MiterClip = 2The corners of the paths are joined sharply, but clipped at the miter limit instead of falling back to SvgStrokeLineJoin.Bevel. This is a new value that might not be supported by most browsers.
Round = 3The corners of the paths are rounded off.