我是C#开发的新手,我应该以编程方式生成Word文档。
在某些时候我正在这样做:
Paragraph p1 = document.Paragraphs.Add();
Table t1 = p1.Range.Tables.Add(p1.Range, 2, 1, Missing.Value, Missing.Value);
t1.Range.Font.Size = 11;
t1.Style = style;
t1.Rows[1].Alignment = WdRowAlignment.wdAlignRowCenter;
t1.Cell(1, 1).Range.Select();
document.Application.Selection.TypeText(item.FullName + "");
t1.Cell(2, 1).Range.Select();
document.Application.Selection.TypeText(item.swca_description + "");
t1.Cell(2, 1).Range.Bold = 0;
第一个单元格是我打算格式化的(item.FullName
)。
有什么想法吗?
编辑: 这就是我创建那个我需要给出颜色的字符串的方法:
private string GetFullName()
{
StringBuilder sb = new StringBuilder();
sb.Append(this.swc_datatype == null ? "void" : this.swc_datatype.swcdt_name);
sb.Append($" {this.swca_name}(");
foreach (swc_api_parameter inputParameter in this.swc_api_parameter)
sb.Append($"{inputParameter.swc_datatype?.swcdt_name} {inputParameter.swcap_name},");
if (swc_api_parameter.Any())
sb.Length = sb.Length - 1;
sb.Append(")");
return sb.ToString();
}
LE:我已经实现了这样的方法:
public static Paragraph AddRtfTextFromFile(this Document document, string rtfPath)
{
Paragraph p = document.Paragraphs.Add();
p.Range.InsertFile(rtfPath, Missing.Value, false);
p.Range.Font.Bold = 0;
p.Range.Font.Name = "Calibri";
p.Range.Font.Size = 12;
p.Range.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphJustify;
p.Range.PageSetup.VerticalAlignment = WdVerticalAlignment.wdAlignVerticalTop;
p.Range.InsertParagraphAfter();
return p;
}
答案 0 :(得分:1)
如果你可以将item.FullName
分成单词,一种方法是键入单词,选择单词,应用颜色,折叠选择,键入下一个单词并重复。我不知道是否还有其他方法。但这可能是实现您所需要的一种方式。
Document document = new Document();
Paragraph p1 = document.Paragraphs.Add();
Table t1 = p1.Range.Tables.Add(p1.Range, 2, 1, Missing.Value, Missing.Value);
t1.Range.Font.Size = 11;
//t1.Style = style;
t1.Rows[1].Alignment = WdRowAlignment.wdAlignRowCenter;
t1.Cell(1, 1).Range.Select();
document.Application.Selection.TypeText("void ");
document.Application.Selection.MoveLeft(WdUnits.wdCharacter, "void ".Length, true);
document.Application.Selection.Font.Color = WdColor.wdColorSkyBlue;
document.Application.Selection.Collapse(WdCollapseDirection.wdCollapseEnd);
document.Application.Selection.TypeText("item.FullName");
document.Application.Selection.MoveLeft(WdUnits.wdCharacter, "item.FullName".Length, true);
document.Application.Selection.Font.Color = WdColor.wdColorRed;
document.Application.Selection.Collapse(WdCollapseDirection.wdCollapseEnd);
t1.Cell(2, 1).Range.Select();
document.Application.Selection.TypeText("item.swca_description");
document.Application.Selection.MoveLeft(WdUnits.wdCharacter, "swca_description".Length, true);
document.Application.Selection.Font.Color = WdColor.wdColorBlack;
document.Application.Selection.Collapse(WdCollapseDirection.wdCollapseEnd);
t1.Cell(2, 1).Range.Bold = 0;
document.SaveAs(@"D:\Test.docx");
另外,请注意我已注释掉t1.Style = style;
。根据需要取消注释。