如何正确创建单元格格式?
How to create a Cell Format correctly?
我有两种单元格格式:
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 sheet 中,您需要按照特定顺序创建样式 sheet。你没有做的是遵循这个顺序[正如我在代码示例中提供的那样]。了解样式 sheet 实际结构的最简单方法是使用 Open XMl Productivity tool. You can analyse any Excel file for it's contents and also verify formatting too. [A good tutorial].
作为支持,我为工作簿提供了基本样式 sheet 的代码。这是您应该拥有的正确顺序。 [这里我提供了 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();
注意 - 在您的特定情况下,您省略了非常需要的填充和边框。
我有两种单元格格式:
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 sheet 中,您需要按照特定顺序创建样式 sheet。你没有做的是遵循这个顺序[正如我在代码示例中提供的那样]。了解样式 sheet 实际结构的最简单方法是使用 Open XMl Productivity tool. You can analyse any Excel file for it's contents and also verify formatting too. [A good tutorial].
作为支持,我为工作簿提供了基本样式 sheet 的代码。这是您应该拥有的正确顺序。 [这里我提供了 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();
注意 - 在您的特定情况下,您省略了非常需要的填充和边框。