2 writes to SupportedPointerProperties
PresentationCore (2)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (2)
182SupportedPointerProperties = new UnsafeNativeMethods.POINTER_DEVICE_PROPERTY[propCount]; 273SupportedPointerProperties = supportedProperties.ToArray();
7 references to SupportedPointerProperties
PresentationCore (7)
System\Windows\Input\Stylus\Pointer\PointerTabletDeviceInfo.cs (4)
184success = UnsafeNativeMethods.GetPointerDeviceProperties(Device, ref propCount, SupportedPointerProperties); 209foreach (var prop in SupportedPointerProperties) 304new Size(SupportedPointerProperties[StylusPointDescription.RequiredXIndex].logicalMax, 305SupportedPointerProperties[StylusPointDescription.RequiredYIndex].logicalMax),
System\Windows\InterOp\HwndPointerInputProvider.cs (3)
137int pointerPropertyCount = tabletDevice.DeviceInfo.SupportedPointerProperties.Length; 149tabletDevice.DeviceInfo.SupportedPointerProperties, 156int numButtons = tabletDevice.DeviceInfo.SupportedPointerProperties.Length - tabletDevice.DeviceInfo.SupportedButtonPropertyIndex;