2 writes to SupportedPointerProperties
PresentationCore (2)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (2)
181SupportedPointerProperties = new UnsafeNativeMethods.POINTER_DEVICE_PROPERTY[propCount]; 272SupportedPointerProperties = supportedProperties.ToArray();
7 references to SupportedPointerProperties
PresentationCore (7)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (4)
183success = UnsafeNativeMethods.GetPointerDeviceProperties(Device, ref propCount, SupportedPointerProperties); 208foreach (var prop in SupportedPointerProperties) 303new Size(SupportedPointerProperties[StylusPointDescription.RequiredXIndex].logicalMax, 304SupportedPointerProperties[StylusPointDescription.RequiredYIndex].logicalMax),
System\Windows\InterOp\HwndPointerInputProvider.cs (3)
136int pointerPropertyCount = tabletDevice.DeviceInfo.SupportedPointerProperties.Length; 148tabletDevice.DeviceInfo.SupportedPointerProperties, 155int numButtons = tabletDevice.DeviceInfo.SupportedPointerProperties.Length - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex;