This commit is contained in:
Anitonchik 2024-12-16 23:34:47 +04:00
parent 65bf29d747
commit 243fe1efb9

View File

@ -39,7 +39,7 @@ public class ExcelBuilder
CreateCell(startIndex, _rowIndex, header, StyleIndex.BoldTextWithoutBorder); CreateCell(startIndex, _rowIndex, header, StyleIndex.BoldTextWithoutBorder);
for (int i = startIndex + 1; i < startIndex + count; ++i) for (int i = startIndex + 1; i < startIndex + count; ++i)
{ {
CreateCell(i, _rowIndex, "", StyleIndex.BoldTextWithoutBorder); CreateCell(i, _rowIndex, "", StyleIndex.SimpleTextWithoutBorder);
} }
_mergeCells.Append(new MergeCell() _mergeCells.Append(new MergeCell()
{ {