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.

20 lines
400 B
C#

namespace com.azkoss.excellite
{
using System;
///<summary>
///Different borders that can be set on excel cell. Members of this enumeration can't be combined.
///</summary>
///<seealso cref="com.azkoss.excellite.MultipleBorders" />
public enum IndividualBorder
{
Top,
Bottom,
Left,
Right,
DiagonalUp,
DiagonalDown
}
}