r5sdk/r5dev/thirdparty/cppnet/cppkore/FormBorderStyle.h
2022-05-21 19:58:09 +02:00

25 lines
502 B
C++

#pragma once
#include <cstdint>
namespace Forms
{
// Specifies the border styles for a form.
enum class FormBorderStyle
{
// No border.
None = 0,
// A fixed, single line border.
FixedSingle = 1,
// A fixed, three-dimensional border.
Fixed3D = 2,
// A thick, fixed dialog-style border.
FixedDialog = 3,
// A resizable border.
Sizable = 4,
// A tool window border that is not resizable.
FixedToolWindow = 5,
// A resizable tool window border.
SizeableToolWindow = 6
};
}