我有两种Cell格式:
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)
中有错误;
什么可能是错的?
答案 0 :(得分:3)
在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();
注意 - 在您的特定情况下,您省略了非常需要的填充和边框。