LineJoin Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the style used to join two line segments where they meet.
public enum class LineJoin
public enum LineJoin
type LineJoin =
Public Enum LineJoin
- Inheritance
-
LineJoin
Fields
Name | Value | Description |
---|---|---|
Miter | 0 | Creates a sharp corner or point. The outer edges of the lines extend until they meet at a point. If the joint's angle is too sharp, a bevel join is used instead. |
Round | 1 | Creates a rounded corner at the joint. The corner is filled with a circle with the diameter equal to the line width. |
Bevel | 2 | Creates a beveled corner at the joint. The joint is filled by a triangle that connects the outer edges of the lines. |