Question about eventflags values

I’m using Ignition Perspective version 8.1.43.

According to the information above, I understand that Bit 5 represents the Alarm Enabled state.
However, when I disable and then enable an alarm on a tag, the eventflags value shows 24 or 28.
Based on the manual, shouldn’t the value be 32 or higher?

Bit 5 = 2^4 = 16
The event flag should never be above 2^5 - 1 = 31 (assuming there’s no other values encoded in higher bits)
Your results look about right.
You can use {eventFlag} & 16 to check if that bit is on

Edit: wait, they start with bit 0, so bit 5 should actually be the 6th bit and be at 2^5…
There’s something fishy, let me read the doc and do a few tests