2022-12-27 17:33:33 +08:00

17 lines
204 B
C#

using System;
namespace GoldPrinter.ExcelConstants
{
public enum BordersLineStyle
{
xlContinuous,
xlDash,
xlDashDot,
xlDashDotDot,
xlDot,
xlDouble,
xlLineStyleNone,
xlSlantDashDot
}
}