1 write to _selectionRect
PresentationFramework (1)
MS\Internal\Ink\SelectionEditingBehavior.cs (1)
68
_selectionRect
= InkCanvas.GetSelectionBounds( );
11 references to _selectionRect
PresentationFramework (11)
MS\Internal\Ink\SelectionEditingBehavior.cs (11)
72
_previousRect =
_selectionRect
;
75
InkCanvas.InkCanvasSelection.StartFeedbackAdorner(
_selectionRect
, _hitResult);
192
if ( newPoint.X >
_selectionRect
.Right - MinimumHeightWidthSize )
194
newPoint.X =
_selectionRect
.Right - MinimumHeightWidthSize;
203
if ( newPoint.X <
_selectionRect
.Left + MinimumHeightWidthSize )
205
newPoint.X =
_selectionRect
.Left + MinimumHeightWidthSize;
214
if ( newPoint.Y >
_selectionRect
.Bottom - MinimumHeightWidthSize )
216
newPoint.Y =
_selectionRect
.Bottom - MinimumHeightWidthSize;
225
if ( newPoint.Y <
_selectionRect
.Top + MinimumHeightWidthSize )
227
newPoint.Y =
_selectionRect
.Top + MinimumHeightWidthSize;
399
InkCanvas.InkCanvasSelection.EndFeedbackAdorner(commit ? _previousRect :
_selectionRect
);