LineCapStyle Enumeration
Represents the possible styles for the ends of open figures.
See the
Examples section of the
Pen class for image examples.
Namespace: KGySoft.Drawing.ShapesAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
Public Enumeration LineCapStyle
public enum class LineCapStyle
Flat | 0 |
Represents a flat line cap. This produces a square line cap that does not extend past the end of the line.
|
Square | 1 |
Represents a square line cap. The only difference from Flat is that the Flat style
has the originally specified length, whereas the Square style extends the line by half of the Pen width.
|
Round | 2 |
Represents a round line cap.
|
Triangle | 3 |
Represents a triangle line cap.
|