2 overrides of InRange
PresentationCore (2)
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
488internal override bool InRange
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (1)
1356internal override bool InRange
6 references to InRange
PresentationCore (6)
System\Windows\Input\Stylus\Common\StylusDevice.cs (1)
267return StylusDeviceImpl.InRange;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
259if (CurrentStylusDevice?.InRange ?? false) 271if (CurrentStylusDevice?.InRange ?? false)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
421if ((CurrentStylusDevice == null || !CurrentStylusDevice.InRange)) 565if (CurrentStylusDevice != null && CurrentStylusDevice.InRange) 596if (CurrentStylusDevice != null && CurrentStylusDevice.InRange)