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

17 lines
304 B
C#

using System;
namespace CPF.ReoGrid
{
public enum WorkbookSettings : ulong
{
None,
Default = 458752UL,
Behavior_Default = 0UL,
View_Default = 65536UL,
View_ShowSheetTabControl = 65536UL,
View_ShowScrolls = 393216UL,
View_ShowHorScroll = 131072UL,
View_ShowVerScroll = 262144UL
}
}