CPF/CPF.ReoGrid/Interaction/ToggleStatus.cs

16 lines
193 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Interaction
{
[Flags]
public enum ToggleStatus
{
Normal = 0,
Inactive = 256,
Pushed = 512,
Checked = 1024,
Flat = 16384,
All = 18176
}
}