16 lines
193 B
C#
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
|
|||
|
}
|
|||
|
}
|