mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
320 B
C
17 lines
320 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Specifies the case of characters in a Textbox control.
|
||
|
enum class CharacterCasing
|
||
|
{
|
||
|
// The case of characters is left unchanged.
|
||
|
Normal = 0,
|
||
|
// Converts all characters to uppercase.
|
||
|
Upper = 1,
|
||
|
// Converts all characters to lowercase.
|
||
|
Lower = 2,
|
||
|
};
|
||
|
}
|