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.

14 lines
195 B
C#

9 months ago
namespace com.azkoss.excellite
{
using System;
internal enum BoundSheetVisibility : byte
{
// Fields
Hidden = 1,
VeryHidden = 2,
Visible = 0
}
}