1 write to _selectionRect
PresentationFramework (1)
MS\Internal\Ink\SelectionEditingBehavior.cs (1)
69_selectionRect = InkCanvas.GetSelectionBounds( );
11 references to _selectionRect
PresentationFramework (11)
MS\Internal\Ink\SelectionEditingBehavior.cs (11)
73_previousRect = _selectionRect; 76InkCanvas.InkCanvasSelection.StartFeedbackAdorner(_selectionRect, _hitResult); 193if ( newPoint.X > _selectionRect.Right - MinimumHeightWidthSize ) 195newPoint.X = _selectionRect.Right - MinimumHeightWidthSize; 204if ( newPoint.X < _selectionRect.Left + MinimumHeightWidthSize ) 206newPoint.X = _selectionRect.Left + MinimumHeightWidthSize; 215if ( newPoint.Y > _selectionRect.Bottom - MinimumHeightWidthSize ) 217newPoint.Y = _selectionRect.Bottom - MinimumHeightWidthSize; 226if ( newPoint.Y < _selectionRect.Top + MinimumHeightWidthSize ) 228newPoint.Y = _selectionRect.Top + MinimumHeightWidthSize; 400InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect : _selectionRect);