mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
462 B
C
18 lines
462 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace Forms
|
||
|
{
|
||
|
// Specifies how an object or text in a control is
|
||
|
// horizontally aligned relative to an element of the control.
|
||
|
enum class HorizontalAlignment
|
||
|
{
|
||
|
// The object or text is aligned on the left of the control element.
|
||
|
Left = 0,
|
||
|
// The object or text is aligned on the right of the control element.
|
||
|
Right = 1,
|
||
|
// The object or text is aligned in the center of the control element.
|
||
|
Center = 2
|
||
|
};
|
||
|
}
|