17 lines
259 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#pragma once
#include <cstdint>
namespace Forms
{
// Specifies the border style for a control or form.
enum class BorderStyle
{
// No border.
None = 0,
// A single-line border.
FixedSingle = 1,
// A three-dimensional border.
Fixed3D = 2
};
}