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
260 B
C#

namespace com.azkoss.excellite
{
using System;
[Flags]
internal enum RowOptions : ushort
{
// Fields
Collapsed = 0x10,
Default = 0,
GhostDirty = 0x80,
Unsynced = 0x40,
ZeroHeight = 0x20
}
}