Navigation
API > API/Plugins > API/Plugins/StylusInput
Flags describing tablet hardware capabilities.
| Name | UE::StylusInput::ETabletHardwareCapabilities |
| Type | enum |
| Header File | /Engine/Plugins/Editor/StylusInput/Source/StylusInput/Public/StylusInputTabletContext.h |
| Include Path | #include "StylusInputTabletContext.h" |
Syntax
namespace UE
{
namespace StylusInput
{
enum ETabletHardwareCapabilities
{
None = 0,
Integrated = 1 << 0,
CursorMustTouch = 1 << 1,
HardProximity = 1 << 2,
CursorsHavePhysicalIds = 1 << 3,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Integrated | The digitizer is integrated with the display. |
| CursorMustTouch | The cursor must be in physical contact with the device to report position. |
| HardProximity | The device can generate in-air packets when the cursor is in the physical detection range (proximity) of the device. |
| CursorsHavePhysicalIds | The device can uniquely identify the active cursor. |