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.

22 lines
472 B
C#

9 months ago
namespace com.azkoss.excellite
{
using System;
[Flags]
internal enum SetupOptions : ushort
{
// Fields
AutomaticPageNumbers = 0x80,
DefaultPrintQuality = 0x10,
DoNotPrintCellNotes = 0x20,
Landscape = 2,
PaperOrientationValid = 0x40,
PrintColoured = 8,
PrintErrorOptions = 0xc00,
PrintNotesAsDisplayed = 0x200,
PrintPagesInColumns = 1,
SomeNotInitialised = 4
}
}