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

51 lines
1.6 KiB
C#

using System;
namespace CPF.ReoGrid
{
[Flags]
public enum WorksheetSettings : ulong
{
None = 0UL,
Default = 30508580830UL,
Edit_Default = 478UL,
Edit_Readonly = 1UL,
Edit_AutoFormatCell = 2UL,
Edit_FriendlyPercentInput = 4UL,
Edit_AutoExpandRowHeight = 8UL,
Edit_AllowAdjustRowHeight = 16UL,
Edit_AutoExpandColumnWidth = 32UL,
Edit_AllowAdjustColumnWidth = 64UL,
Edit_DragSelectionToMoveCells = 128UL,
Edit_DragSelectionToFillSerial = 256UL,
Behavior_Default = 65024UL,
Behavior_DoubleClickToResizeHeader = 1536UL,
Behavior_DoubleClickToFitRowHeight = 512UL,
Behavior_DoubleClickToFitColumnWidth = 1024UL,
Behavior_MouseWheelToScroll = 2048UL,
Behavior_MouseWheelToZoom = 4096UL,
Behavior_ShortcutKeyToZoom = 8192UL,
Behavior_AllowUserChangingPageBreaks = 16384UL,
Behavior_ScrollToFocusCell = 32768UL,
View_Default = 443744256UL,
View_ShowColumnHeader = 65536UL,
View_ShowRowHeader = 131072UL,
View_ShowHeaders = 196608UL,
View_ShowHorizontalRuler = 262144UL,
View_ShowVerticalRuler = 524288UL,
View_ShowRulers = 786432UL,
View_ShowGridLine = 1048576UL,
View_AllowShowRowOutlines = 2097152UL,
View_AllowShowColumnOutlines = 4194304UL,
View_AllowShowOutlines = 6291456UL,
View_ShowHiddenCellLine = 16777216UL,
View_AllowCellTextOverflow = 33554432UL,
View_ShowPageBreaks = 67108864UL,
View_AntialiasDrawing = 134217728UL,
View_ShowFrozenLine = 268435456UL,
Formula_Default = 30064771072UL,
Formula_AutoUpdateReferenceCell = 4294967296UL,
Formula_AutoPickingCellAddress = 8589934592UL,
Formula_AutoFormat = 17179869184UL
}
}