Is there any way to get row height of excel row in openxml? In my case, i use openxml 2.0 to generate excel table from .net datatable. For each datatable row, i define new row in excel by
row = new Row() { RowIndex = rowIndex };
after that i append cell to row
row.InsertBefore(newCell, refCell);
when finish generate excel table i want to get each row height to increase its. But it always null when use
Row row = ExcelHelper.GetRow(sheetData, Convert.ToUInt32(13));
DoubleValue a = row.Height;
Help me please! Thank!