Hi i have a XLCell and need to validate if that cell have Bold style.
IXLCell cell = worksheet.Cell(12, 5);
if (cell.Style.Font.Bold)
{
callFunction();
}
Open xlsx the cell have the Bold style active. Using c# and closedXml how can i validate if cell have bold style active? Should be with other properties or styles?
Thks in advance