оаоааааааааа

This commit is contained in:
Anitonchik 2024-12-16 23:33:24 +04:00
parent dd9674561e
commit 8d6192d45a

View File

@ -36,10 +36,10 @@ public class ExcelBuilder
public ExcelBuilder AddHeader(string header, int startIndex, int count) public ExcelBuilder AddHeader(string header, int startIndex, int count)
{ {
CreateCell(startIndex, _rowIndex, header, StyleIndex.BoldTextWithBorder); 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()
{ {