CPF/CPF.ReoGrid/Interaction/ToggleStatus.cs
2024-06-24 10:15:59 +08:00

16 lines
193 B
C#

using System;
namespace CPF.ReoGrid.Interaction
{
[Flags]
public enum ToggleStatus
{
Normal = 0,
Inactive = 256,
Pushed = 512,
Checked = 1024,
Flat = 16384,
All = 18176
}
}