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.

16 lines
251 B
C#

namespace com.azkoss.excellite
{
using System;
[Flags]
internal enum XFOptions2 : ushort
{
// Fields
IndentLevel = 15,
ShrinkToFit = 0x10,
TextDirection = 0xc0,
UsedAttributes = 0xfc00
}
}