1 write to _selectionRect
PresentationFramework (1)
MS\Internal\Ink\SelectionEditingBehavior.cs (1)
82_selectionRect = InkCanvas.GetSelectionBounds( );
11 references to _selectionRect
PresentationFramework (11)
MS\Internal\Ink\SelectionEditingBehavior.cs (11)
86_previousRect = _selectionRect; 89InkCanvas.InkCanvasSelection.StartFeedbackAdorner(_selectionRect, _hitResult); 206if ( newPoint.X > _selectionRect.Right - MinimumHeightWidthSize ) 208newPoint.X = _selectionRect.Right - MinimumHeightWidthSize; 217if ( newPoint.X < _selectionRect.Left + MinimumHeightWidthSize ) 219newPoint.X = _selectionRect.Left + MinimumHeightWidthSize; 228if ( newPoint.Y > _selectionRect.Bottom - MinimumHeightWidthSize ) 230newPoint.Y = _selectionRect.Bottom - MinimumHeightWidthSize; 239if ( newPoint.Y < _selectionRect.Top + MinimumHeightWidthSize ) 241newPoint.Y = _selectionRect.Top + MinimumHeightWidthSize; 413InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect : _selectionRect);