Navigation
API > API/Plugins > API/Plugins/StylusInput
Flags for the status of the stylus pen.
| Name | UE::StylusInput::EPenStatus |
| Type | enum |
| Header File | /Engine/Plugins/Editor/StylusInput/Source/StylusInput/Public/StylusInputPacket.h |
| Include Path | #include "StylusInputPacket.h" |
Syntax
namespace UE
{
namespace StylusInput
{
enum EPenStatus
{
None = 0b00000000,
CursorIsTouching = 0b00000001,
CursorIsInverted = 0b00000010,
NotUsed = 0b00000100,
BarrelButtonPressed = 0b00001000,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | There is no pen flag. |
| CursorIsTouching | The pen cursor is touching the drawing surface. |
| CursorIsInverted | The pen cursor is inverted, e.g. the eraser end of the pen is pointing toward the drawing surface. |
| NotUsed | Not used. |
| BarrelButtonPressed | The barrel button is pressed. |