1 write to _selectionRect
PresentationFramework (1)
src\Framework\MS\Internal\Ink\SelectionEditingBehavior.cs (1)
84_selectionRect = InkCanvas.GetSelectionBounds( );
11 references to _selectionRect
PresentationFramework (11)
src\Framework\MS\Internal\Ink\SelectionEditingBehavior.cs (11)
88_previousRect = _selectionRect; 91InkCanvas.InkCanvasSelection.StartFeedbackAdorner(_selectionRect, _hitResult); 209if ( newPoint.X > _selectionRect.Right - MinimumHeightWidthSize ) 211newPoint.X = _selectionRect.Right - MinimumHeightWidthSize; 220if ( newPoint.X < _selectionRect.Left + MinimumHeightWidthSize ) 222newPoint.X = _selectionRect.Left + MinimumHeightWidthSize; 231if ( newPoint.Y > _selectionRect.Bottom - MinimumHeightWidthSize ) 233newPoint.Y = _selectionRect.Bottom - MinimumHeightWidthSize; 242if ( newPoint.Y < _selectionRect.Top + MinimumHeightWidthSize ) 244newPoint.Y = _selectionRect.Top + MinimumHeightWidthSize; 417InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect : _selectionRect);