3 writes to _stylusPoints
PresentationCore (3)
Core\CSharp\System\Windows\Ink\Stroke.cs (3)
78_stylusPoints = stylusPoints; 123clone._stylusPoints = _stylusPoints.Clone(); 551_stylusPoints = value;
26 references to _stylusPoints
PresentationCore (26)
Core\CSharp\System\Windows\Ink\Stroke.cs (26)
90_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 91_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero); 123clone._stylusPoints = _stylusPoints.Clone(); 195_stylusPoints.Transform(new System.Windows.Media.MatrixTransform(transformMatrix)); 234if (_stylusPoints.Count < 2) 236return _stylusPoints; 241if (!bezier.ConstructBezierState( _stylusPoints, 245return _stylusPoints.Clone(); 277new StylusPointCollection(_stylusPoints.Description, bezierPoints.Count); 284_stylusPoints[0].GetAdditionalData(), 285_stylusPoints[0].PressureFactor); 313double unbezierLength = GetDistanceBetweenPoints((Point)_stylusPoints[0], (Point)_stylusPoints[1]); 316int stylusPointsCount = _stylusPoints.Count; 328StylusPoint prevStylusPoint = _stylusPoints[stylusPointsIndex - 1]; 333float pressureDelta = _stylusPoints[stylusPointsIndex].PressureFactor - pressureAtPrev; 354GetDistanceBetweenPoints((Point)_stylusPoints[stylusPointsIndex - 1], 355(Point)_stylusPoints[stylusPointsIndex]); 366_stylusPoints[stylusPointsCount - 1].GetAdditionalData(), 367_stylusPoints[stylusPointsCount - 1].PressureFactor); 525return _stylusPoints; 546new StylusPointsReplacedEventArgs(value, _stylusPoints); 548_stylusPoints.Changed -= new EventHandler(StylusPoints_Changed); 549_stylusPoints.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero); 553_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 554_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);