How to remove current cell highlight(border line) in aspose cells

Hi Aspose Team,
I removed gridlines for the excel sheet and then created a table to display index page.
FYI. Attached the screenshot here.
I don’t want to display current cell border in the selection of excel sheet.
Is there a way to handle it?Capture.JPG (46.4 KB)

@manikandan1234
Please try the following codes:
Cell cell = book.Worksheets[0].Cells[“C15”];
Style style = cell.GetStyle();
style.SetBorder(BorderType.TopBorder, CellBorderType.None, Color.Empty);
style.SetBorder(BorderType.BottomBorder, CellBorderType.None, Color.Empty);
style.SetBorder(BorderType.LeftBorder, CellBorderType.None, Color.Empty);
style.SetBorder(BorderType.RightBorder, CellBorderType.None, Color.Empty);
cell.SetStyle(style);

@manikandan1234
Or you can use Cells.ClearFormats method:
Cells cell = book.Worksheets[0].Cells;
cell.ClearFormats(CellArea.CreateCellArea(“A9”, “H20”));