[]
Serializable, Comparable<BordersIndex>, ConstableUse this enum with IBorders.get(BordersIndex) to access a specific edge, inside border, or diagonal border of a range and apply individual border settings.
IRange range = worksheet.getRange("B2:C3");
range.getBorders().setLineStyle(BorderLineStyle.Thin);
range.getBorders().get(BordersIndex.InsideHorizontal).setLineStyle(BorderLineStyle.Double);
range.getBorders().get(BordersIndex.EdgeBottom).setColor(Color.GetBlue());
Enum.EnumDesc<E extends Enum<E>>static BordersIndexstatic BordersIndex[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null