8 writes to IsSmoothJoin
PresentationCore (8)
Core\CSharp\System\Windows\Media\BezierSegment.cs (1)
62IsSmoothJoin = isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyBezierSegmentFigureLogic.cs (1)
76IsSmoothJoin = isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyLineSegmentFigureLogic.cs (1)
76IsSmoothJoin = isSmoothJoin;
Core\CSharp\System\Windows\Media\Generated\PolyQuadraticBezierSegmentFigureLogic.cs (1)
76IsSmoothJoin = isSmoothJoin;
Core\CSharp\System\Windows\Media\LineSegment.cs (1)
59IsSmoothJoin = isSmoothJoin;
Core\CSharp\System\Windows\Media\PathStreamGeometryContext.cs (2)
294segment.IsSmoothJoin = isSmoothJoin; 459segment.IsSmoothJoin = _currentSegmentIsSmoothJoin;
Core\CSharp\System\Windows\Media\QuadraticBezierSegment.cs (1)
61IsSmoothJoin = isSmoothJoin;
14 references to IsSmoothJoin
PresentationCore (14)
Core\CSharp\System\Windows\Media\ArcSegment.cs (2)
114bool isSmoothJoin = IsSmoothJoin; 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);