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
;
89
InkCanvas.InkCanvasSelection.StartFeedbackAdorner(
_selectionRect
, _hitResult);
206
if ( newPoint.X >
_selectionRect
.Right - MinimumHeightWidthSize )
208
newPoint.X =
_selectionRect
.Right - MinimumHeightWidthSize;
217
if ( newPoint.X <
_selectionRect
.Left + MinimumHeightWidthSize )
219
newPoint.X =
_selectionRect
.Left + MinimumHeightWidthSize;
228
if ( newPoint.Y >
_selectionRect
.Bottom - MinimumHeightWidthSize )
230
newPoint.Y =
_selectionRect
.Bottom - MinimumHeightWidthSize;
239
if ( newPoint.Y <
_selectionRect
.Top + MinimumHeightWidthSize )
241
newPoint.Y =
_selectionRect
.Top + MinimumHeightWidthSize;
413
InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect :
_selectionRect
);