[]
Clears the formatting of this border.
Use this method to remove the current settings applied to a single IBorder, such as its line style and color.
void Clear()
Sub Clear()
IBorder border = worksheet.Range["A1"].Borders[BordersIndex.EdgeBottom];
border.LineStyle = BorderLineStyle.Dashed;
border.Color = Color.Blue;
border.Clear();