gpt4 book ai didi

c# - 如何正确创建单元格格式?

转载 作者:行者123 更新时间:2023-11-30 14:53:56 26 4
gpt4 key购买 nike

我有两种单元格格式:

          var stylesPart = spreadsheetDocument.WorkbookPart.AddNewPart<WorkbookStylesPart>();
stylesPart.Stylesheet = new Stylesheet();

// blank font list
stylesPart.Stylesheet.Fonts = new Fonts();
stylesPart.Stylesheet.Fonts.Count = 2;
stylesPart.Stylesheet.Fonts.AppendChild(new Font(new Bold(), new FontSize() {Val = 14}));
stylesPart.Stylesheet.Fonts.AppendChild(new Font(new FontSize() {Val = 12}));

// cell format list
stylesPart.Stylesheet.CellFormats = new CellFormats();
stylesPart.Stylesheet.CellFormats.AppendChild(new CellFormat { FormatId = 0, FontId = 0, ApplyFont = true });
stylesPart.Stylesheet.CellFormats.AppendChild(new CellFormat { FormatId = 1, FontId = 1, ApplyFont = true });
stylesPart.Stylesheet.CellFormats.Count = 2;

stylesPart.Stylesheet.Save();

当我使用它们中的任何一个来创建我的 Excel 文档时,我在尝试打开文档时收到一条消息,该文档在 /xl/styles.xml (Styles) 中有错误;

有什么问题吗?

最佳答案

在 Excel 工作表中,您需要按照特定顺序创建样式表。你没有做的是遵循这个顺序[正如我在代码示例中提供的那样]。了解样式表实际结构的最简单方法使用 Open XMl Productivity tool .您可以分析任何 Excel 文件的内容,也可以验证格式。 [ A good tutorial ].

作为支持,我提供了工作簿基本样式表的代码。这是您应该拥有的正确顺序。 [这里我提供了 2 种样式的代码,样式索引 0 为默认样式,索引 1 为带对齐的印迹文本。]

WorkbookStylesPart stylesheet = spreadsheet.WorkbookPart
.AddNewPart<WorkbookStylesPart>();

Stylesheet workbookstylesheet = new Stylesheet();
// <Fonts>
Font font0 = new Font(); // Default font

Font font1 = new Font(); // Bold font
Bold bold = new Bold();
font1.Append(bold);

Fonts fonts = new Fonts(); // <APENDING Fonts>
fonts.Append(font0);
fonts.Append(font1);

// <Fills>
Fill fill0 = new Fill(); // Default fill

Fills fills = new Fills(); // <APENDING Fills>
fills.Append(fill0);

// <Borders>
Border border0 = new Border(); // Defualt border

Borders borders = new Borders(); // <APENDING Borders>
borders.Append(border0);

// <CellFormats>
CellFormat cellformat0 = new CellFormat()
{
FormatId = 0,
FillId = 0,
BorderId = 0
};

Alignment alignment = new Alignment()
{
Horizontal = HorizontalAlignmentValues.Center,
Vertical = VerticalAlignmentValues.Center
};

CellFormat cellformat1 = new CellFormat(alignment)
{
FontId = 1
};

// <APENDING CellFormats>
CellFormats cellformats = new CellFormats();
cellformats.Append(cellformat0);
cellformats.Append(cellformat1);

// Append FONTS, FILLS , BORDERS & CellFormats to stylesheet <Preserve the ORDER>
workbookstylesheet.Append(fonts);
workbookstylesheet.Append(fills);
workbookstylesheet.Append(borders);
workbookstylesheet.Append(cellformats);

stylesheet.Stylesheet = workbookstylesheet;
stylesheet.Stylesheet.Save();

注意 - 在您的特定情况下,您省略了很多需要的填充和边框。

关于c# - 如何正确创建单元格格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28087352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com