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.

28 lines
501 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Line styles used for
///<see cref="com.azkoss.excellite.CellBorder.LineStyle">CellBorder.LineStyle</see>.
///</summary>
public enum LineStyle
{
None,
Thin,
Medium,
Dashed,
Dotted,
Thick,
DoubleLine,
Hair,
MediumDashed,
DashDot,
MediumDashDot,
DashDotDot,
MediumDashDotDot,
SlantedDashDot
}
}