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
;
76
InkCanvas.InkCanvasSelection.StartFeedbackAdorner(
_selectionRect
, _hitResult);
193
if ( newPoint.X >
_selectionRect
.Right - MinimumHeightWidthSize )
195
newPoint.X =
_selectionRect
.Right - MinimumHeightWidthSize;
204
if ( newPoint.X <
_selectionRect
.Left + MinimumHeightWidthSize )
206
newPoint.X =
_selectionRect
.Left + MinimumHeightWidthSize;
215
if ( newPoint.Y >
_selectionRect
.Bottom - MinimumHeightWidthSize )
217
newPoint.Y =
_selectionRect
.Bottom - MinimumHeightWidthSize;
226
if ( newPoint.Y <
_selectionRect
.Top + MinimumHeightWidthSize )
228
newPoint.Y =
_selectionRect
.Top + MinimumHeightWidthSize;
400
InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect :
_selectionRect
);