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

17 lines
335 B
C++

#pragma once
#include <cstdint>
namespace Forms
{
// Specifies how ListView column headers behave.
enum class ColumnHeaderStyle
{
// No visible column header.
None = 0,
// Visible column header that does not respond to clicking.
NonClickable = 1,
// Visible column header that responds to clicking.
Clickable = 2
};
}