15 writes to IsStroked
PresentationCore (15)
System\Windows\Media\ArcSegment.cs (1)
62
IsStroked
= isStroked;
System\Windows\Media\BezierSegment.cs (2)
49
IsStroked
= isStroked;
58
IsStroked
= isStroked;
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
55
IsStroked
= isStroked;
66
IsStroked
= isStroked;
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
55
IsStroked
= isStroked;
66
IsStroked
= isStroked;
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
55
IsStroked
= isStroked;
66
IsStroked
= isStroked;
System\Windows\Media\LineSegment.cs (2)
48
IsStroked
= isStroked;
55
IsStroked
= isStroked;
System\Windows\Media\PathStreamGeometryContext.cs (2)
286
segment.
IsStroked
= isStroked;
451
segment.
IsStroked
= _currentSegmentIsStroked;
System\Windows\Media\QuadraticBezierSegment.cs (2)
48
IsStroked
= isStroked;
58
IsStroked
= isStroked;
19 references to IsStroked
PresentationCore (14)
System\Windows\Media\ArcSegment.cs (2)
106
bool isStroked =
IsStroked
;
139
ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection,
IsStroked
, IsSmoothJoin);
System\Windows\Media\BezierSegment.cs (2)
85
figure.Segments.Add(new BezierSegment(pt1, pt2, pt3,
IsStroked
, IsSmoothJoin));
97
ctx.BezierTo(Point1, Point2, Point3,
IsStroked
, IsSmoothJoin);
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
99
figure.Segments.Add(new PolyBezierSegment(copy,
IsStroked
, IsSmoothJoin));
122
ctx.PolyBezierTo(Points,
IsStroked
, IsSmoothJoin);
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
99
figure.Segments.Add(new PolyLineSegment(copy,
IsStroked
, IsSmoothJoin));
122
ctx.PolyLineTo(Points,
IsStroked
, IsSmoothJoin);
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
99
figure.Segments.Add(new PolyQuadraticBezierSegment(copy,
IsStroked
, IsSmoothJoin));
122
ctx.PolyQuadraticBezierTo(Points,
IsStroked
, IsSmoothJoin);
System\Windows\Media\LineSegment.cs (2)
77
figure.Segments.Add(new LineSegment(pt,
IsStroked
, IsSmoothJoin));
87
ctx.LineTo(Point,
IsStroked
, IsSmoothJoin);
System\Windows\Media\QuadraticBezierSegment.cs (2)
83
figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2,
IsStroked
, IsSmoothJoin));
95
ctx.QuadraticBezierTo(Point1, Point2,
IsStroked
, IsSmoothJoin);
ReachFramework (5)
Serialization\VisualSerializer.cs (5)
1032
if (forStroke && !forFill && !ps.
IsStroked
)
1036
if ((i < count - 1) && !segments[i + 1].
IsStroked
)
1135
if (!ps.
IsStroked
)
1257
if (!ps.
IsStroked
|| ps.IsSmoothJoin)
1529
if (forStroke && !forFill && !ps.
IsStroked
)