Files
AetherBags/KamiToolKit/Enums/TextInputFlags.cs
T
KnackAtNite 8db4ce6094
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Initial commit: AetherBags + KamiToolKit for FC Gitea
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 14:46:31 -05:00

21 lines
420 B
C#

using System;
namespace KamiToolKit.Enums;
[Flags]
public enum TextInputFlags : ushort {
Capitalize = 0x1,
Mask = 0x2,
EnableDictionary = 0x4,
EnableHistory = 0x8,
EnableIme = 0x10,
EscapeClears = 0x20,
AllowUpperCase = 0x40,
AllowLowerCase = 0x80,
AllowNumberInput = 0x100,
AllowSymbolInput = 0x200,
WordWrap = 0x400,
MultiLine = 0x800,
AutoMaxWidth = 0x1000,
}