14 references to PenLineCap
Microsoft.Maui.Controls (14)
Border\Border.cs (7)
156
BindableProperty.Create(nameof(StrokeLineCap), typeof(
PenLineCap
), typeof(Border),
PenLineCap
.Flat);
197
public
PenLineCap
StrokeLineCap
200
get { return (
PenLineCap
)GetValue(StrokeLineCapProperty); }
222
PenLineCap
.Flat => LineCap.Butt,
223
PenLineCap
.Round => LineCap.Round,
224
PenLineCap
.Square => LineCap.Square,
Shapes\Shape.cs (7)
75
BindableProperty.Create(nameof(StrokeLineCap), typeof(
PenLineCap
), typeof(Shape),
PenLineCap
.Flat);
125
public
PenLineCap
StrokeLineCap
128
get { return (
PenLineCap
)GetValue(StrokeLineCapProperty); }
171
PenLineCap
.Flat => LineCap.Butt,
172
PenLineCap
.Round => LineCap.Round,
173
PenLineCap
.Square => LineCap.Square,