15 writes to IsStroked
PresentationCore (15)
System\Windows\Media\ArcSegment.cs (1)
46IsStroked = isStroked;
System\Windows\Media\BezierSegment.cs (2)
30IsStroked = isStroked; 39IsStroked = isStroked;
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
40IsStroked = isStroked; 51IsStroked = isStroked;
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
40IsStroked = isStroked; 51IsStroked = isStroked;
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
40IsStroked = isStroked; 51IsStroked = isStroked;
System\Windows\Media\LineSegment.cs (2)
29IsStroked = isStroked; 36IsStroked = isStroked;
System\Windows\Media\PathStreamGeometryContext.cs (2)
269segment.IsStroked = isStroked; 434segment.IsStroked = _currentSegmentIsStroked;
System\Windows\Media\QuadraticBezierSegment.cs (2)
29IsStroked = isStroked; 39IsStroked = isStroked;
19 references to IsStroked
PresentationCore (14)
System\Windows\Media\ArcSegment.cs (2)
90bool isStroked = IsStroked; 123ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked, IsSmoothJoin);
System\Windows\Media\BezierSegment.cs (2)
66figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked, IsSmoothJoin)); 78ctx.BezierTo(Point1, Point2, Point3, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyBezierSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyBezierTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyLineSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyLineTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
84figure.Segments.Add(new PolyQuadraticBezierSegment(copy, IsStroked, IsSmoothJoin)); 107ctx.PolyQuadraticBezierTo(Points, IsStroked, IsSmoothJoin);
System\Windows\Media\LineSegment.cs (2)
58figure.Segments.Add(new LineSegment(pt, IsStroked, IsSmoothJoin)); 68ctx.LineTo(Point, IsStroked, IsSmoothJoin);
System\Windows\Media\QuadraticBezierSegment.cs (2)
64figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked, IsSmoothJoin)); 76ctx.QuadraticBezierTo(Point1, Point2, IsStroked, IsSmoothJoin);
ReachFramework (5)
Serialization\VisualSerializer.cs (5)
1024if (forStroke && !forFill && !ps.IsStroked) 1028if ((i < count - 1) && !segments[i + 1].IsStroked) 1127if (!ps.IsStroked) 1249if (!ps.IsStroked || ps.IsSmoothJoin) 1521if (forStroke && !forFill && !ps.IsStroked)