You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
399 B
C#

namespace com.azkoss.excellite
{
using System;
[Flags]
internal enum WSBoolOptions : ushort
{
// Fields
AlternateExpEval = 0x4000,
AlternateForEntry = 0x8000,
ApplyStyles = 0x20,
ColGroupRight = 0x80,
Dialog = 0x10,
DspGuts = 0x400,
FitToPage = 0x100,
RowGroupBelow = 0x40,
ShowAutoBreaks = 1
}
}