15 writes to IsStroked
PresentationCore (15)
Core\CSharp\System\Windows\Media\ArcSegment.cs (1)
64IsStroked = isStroked;
Core\CSharp\System\Windows\Media\BezierSegment.cs (2)
52IsStroked = isStroked; 61IsStroked = isStroked;
Core\CSharp\System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
61IsStroked = isStroked; 75IsStroked = isStroked;
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
61IsStroked = isStroked; 75IsStroked = isStroked;
Core\CSharp\System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
61IsStroked = isStroked; 75IsStroked = isStroked;
Core\CSharp\System\Windows\Media\LineSegment.cs (2)
51IsStroked = isStroked; 58IsStroked = isStroked;
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (2)
289segment.IsStroked = isStroked; 454segment.IsStroked = _currentSegmentIsStroked;
Core\CSharp\System\Windows\Media\QuadraticBezierSegment.cs (2)
50IsStroked = isStroked; 60IsStroked = isStroked;
14 references to IsStroked
PresentationCore (14)
Core\CSharp\System\Windows\Media\ArcSegment.cs (2)
113bool isStroked = IsStroked; 146ctx.ArcTo(Point, Size, RotationAngle, IsLargeArc, SweepDirection, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\BezierSegment.cs (2)
88figure.Segments.Add(new BezierSegment(pt1, pt2, pt3, IsStroked, IsSmoothJoin)); 100ctx.BezierTo(Point1, Point2, Point3, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (2)
108figure.Segments.Add(new PolyBezierSegment(copy, IsStroked, IsSmoothJoin)); 131ctx.PolyBezierTo(Points, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (2)
108figure.Segments.Add(new PolyLineSegment(copy, IsStroked, IsSmoothJoin)); 131ctx.PolyLineTo(Points, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (2)
108figure.Segments.Add(new PolyQuadraticBezierSegment(copy, IsStroked, IsSmoothJoin)); 131ctx.PolyQuadraticBezierTo(Points, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\LineSegment.cs (2)
80figure.Segments.Add(new LineSegment(pt, IsStroked, IsSmoothJoin)); 90ctx.LineTo(Point, IsStroked, IsSmoothJoin);
Core\CSharp\System\Windows\Media\QuadraticBezierSegment.cs (2)
85figure.Segments.Add(new QuadraticBezierSegment(pt1, pt2, IsStroked, IsSmoothJoin)); 97ctx.QuadraticBezierTo(Point1, Point2, IsStroked, IsSmoothJoin);