PenLineJoin Énumération
Définition
Décrit la forme qui joint deux lignes ou segments.Describes the shape that joins two lines or segments.
public enum class PenLineJoin
public enum PenLineJoin
type PenLineJoin =
Public Enum PenLineJoin
- Héritage
Champs
Bevel | 1 | Vertex biseautés.Beveled vertices. |
Miter | 0 | Vertex anguleux normaux.Regular angular vertices. |
Round | 2 | Vertex arrondis.Rounded vertices. |
Exemples
L’exemple suivant montre plusieurs jointures différentes utilisées aux sommets d’une forme.The following example shows several different joints used at the vertices of a shape.
<Canvas Height="400" Width="400">
<Polyline
Points="10,110 60,10 110,110"
Stroke="Black"
StrokeThickness="4" />
<Polyline
Points="10,110 110,110 110,10"
Stroke="Black"
StrokeThickness="4"
Canvas.Left="150" />
</Canvas>
L’illustration suivante montre les différentes jointures de ligne.The following illustration shows the different line joins.