var workbook = new Workbook("test.xlsx");
var worksheet = workbook.Worksheets[0];
worksheet.AutoFilter.MatchBlanks(0);
worksheet.AutoFilter.Refresh();
Console.WriteLine($"Cell A3 value is empty: {worksheet.Cells["A3"].StringValue == ""}");
Console.WriteLine($"Row 3 is hidden: {worksheet.Cells.Rows[2].IsHidden}");
The issues you have found earlier (filed as CELLSNET-55716) have been fixed in this update. This message was posted using Bugs notification tool by johnson.shi