C#生成word文档的时候,如何设置字号
1个回答
展开全部
下载免费版的spire.doc, 并引用spire.doc.dll至程序
using Spire.Doc;
using Spire.Doc.Documents;
namespace SetFont
{
class Program
{
static void Main(string[] args)
{
//创建一个Document实例
Document doc = new Document();
//添加一个section
Section section = doc.AddSection();
//添加段落一
Paragraph para1 = section.AddParagraph();
para1.AppendText("字号:12");
//添加段落二
Paragraph para2 = section.AddParagraph();
para2.AppendText("字号:15");
//创建字体格式一,字号12
ParagraphStyle style1 = new ParagraphStyle(doc);
style1.CharacterFormat.Bold = true;
style1.CharacterFormat.FontName = "黑体";
style1.CharacterFormat.FontSize = 12f;
doc.Styles.Add(style1);
para1.ApplyStyle(style1.Name);
//创建字体格式二,字号15
ParagraphStyle style2 = new ParagraphStyle(doc);
style2.CharacterFormat.FontName = "黑体";
style2.CharacterFormat.FontSize = 15f;
doc.Styles.Add(style2);
para2.ApplyStyle(style2.Name);
//保存文档
doc.SaveToFile("output.docx", FileFormat.Docx2013);
}
}
}
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询