1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00
2022-05-21 19:58:09 +02:00

21 lines
509 B
C++

#pragma once
#include <cstdint>
#include <CommCtrl.h>
namespace Forms
{
// Specifies how items align in the ListView
enum class ListViewAlignment
{
// When the user moves an
// item, it remains where it is dropped.
Default = LVA_DEFAULT,
// Items are aligned to the top of the ListView control.
Top = LVA_ALIGNTOP,
// Items are aligned to the left of the ListView control.
Left = LVA_ALIGNLEFT,
// Items are aligned to an invisible grid in the control.
SnapToGrid = LVA_SNAPTOGRID
};
}