[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IBorder.Clear

Clear Method

Clear()

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.

Declaration
void Clear()
Sub Clear()
Examples
IBorder border = worksheet.Range["A1"].Borders[BordersIndex.EdgeBottom];
border.LineStyle = BorderLineStyle.Dashed;
border.Color = Color.Blue;
border.Clear();