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
;
91
InkCanvas.InkCanvasSelection.StartFeedbackAdorner(
_selectionRect
, _hitResult);
209
if ( newPoint.X >
_selectionRect
.Right - MinimumHeightWidthSize )
211
newPoint.X =
_selectionRect
.Right - MinimumHeightWidthSize;
220
if ( newPoint.X <
_selectionRect
.Left + MinimumHeightWidthSize )
222
newPoint.X =
_selectionRect
.Left + MinimumHeightWidthSize;
231
if ( newPoint.Y >
_selectionRect
.Bottom - MinimumHeightWidthSize )
233
newPoint.Y =
_selectionRect
.Bottom - MinimumHeightWidthSize;
242
if ( newPoint.Y <
_selectionRect
.Top + MinimumHeightWidthSize )
244
newPoint.Y =
_selectionRect
.Top + MinimumHeightWidthSize;
417
InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect :
_selectionRect
);