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.

17 lines
262 B
C#

namespace com.azkoss.excellite
{
using System;
[Flags]
internal enum Window1Options : ushort
{
// Fields
DisplayHScroll = 8,
DisplayVScroll = 0x10,
Hidden = 1,
Iconic = 2,
ShowTabs = 0x20
}
}