• <menu id="w2i4a"></menu>
  • logo Aspose中文文檔

    文檔首頁>>Aspose中文文檔>>在 NPOI 中格式化文檔中的文本

    在 NPOI 中格式化文檔中的文本


    Aspose.Words是一種高級Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無需在跨平臺應用程序中直接使用Microsoft Word。

    Aspose API支持流行文件格式處理,并允許將各類文檔導出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。

    Aspose.Words for .NET 最新下載

    Aspose.Words

    當前的字體格式由DocumentBuilder.Font屬性 返回的 Font對象表示  。Font 類包含Microsoft  Word 中可能存在的各種字體屬性。


    Document doc = new Document();
    DocumentBuilder builder = new DocumentBuilder(doc);
    builder.ParagraphFormat.Alignment = ParagraphAlignment.Center;
    builder.ParagraphFormat.Borders.LineStyle = LineStyle.Double;
    builder.ParagraphFormat.Borders.Bottom.LineStyle = LineStyle.Single;
    builder.Font.Bold = true;
    builder.Font.Name = "Courier";
    builder.Font.Underline = Underline.DotDotDash;
    builder.Font.Position = 100;
    builder.Writeln("The quick brown fox");
    builder.ParagraphFormat.ClearFormatting();
    builder.ParagraphFormat.Borders.LineStyle = LineStyle.Double;
    builder.ParagraphFormat.Borders.Top.LineStyle = LineStyle.None;
    builder.ParagraphFormat.Alignment = ParagraphAlignment.Right;
    builder.Font.ClearFormatting();
    builder.Font.StrikeThrough = true;
    builder.Font.Size = 20;
    builder.Write("jumped over the lazy dog");
    builder.Font.StrikeThrough = true;
    builder.Font.Size = 20;
    builder.Font.Superscript = true;
    builder.Font.Color = System.Drawing.ColorTranslator.FromHtml("#FF0000");
    builder.Writeln("and went away");
    builder.ParagraphFormat.ClearFormatting();
    builder.InsertBreak(BreakType.PageBreak);
    builder.Font.ClearFormatting();
    builder.ParagraphFormat.Alignment = ParagraphAlignment.Justify;
    builder.ParagraphFormat.LineSpacingRule = LineSpacingRule.Exactly;
    builder.ParagraphFormat.FirstLineIndent = 600;
    builder.Font.Position = 20;
    builder.Writeln("To be, or not to be: that is the question: "
    + "Whether 'tis nobler in the mind to suffer "
    + "The slings and arrows of outrageous fortune, "
    + "Or to take arms against a sea of troubles, "
    + "And by opposing end them? To die: to sleep; ");
    builder.ParagraphFormat.ClearFormatting();
    builder.Font.ClearFormatting();
    builder.Font.Italic = true;
    builder.Writeln("No more; and by a sleep to say we end "
    + "The heart-ache and the thousand natural shocks "
    + "That flesh is heir to, 'tis a consummation "
    + "Devoutly to be wish'd. To die, to sleep; "
    + "To sleep: perchance to dream: ay, there's the rub; "
    + ".......");
    builder.ParagraphFormat.ClearFormatting();
    builder.Font.ClearFormatting();
    builder.Font.Position = 10;
    builder.Writeln("For in that sleep of death what dreams may come");
    builder.InsertBreak(BreakType.LineBreak);
    builder.Writeln("When we have shuffled off this mortal coil,"
    + "Must give us pause: there's the respect"
    + "That makes calamity of so long life;");
    builder.InsertBreak(BreakType.LineBreak);
    builder.Writeln("For who would bear the whips and scorns of time,"
    + "The oppressor's wrong, the proud man's contumely,");
    builder.InsertBreak(BreakType.LineBreak);
    builder.Font.ClearFormatting();
    builder.Writeln("The pangs of despised love, the law's delay,"
    + "The insolence of office and the spurns" + ".......");
    doc.Save("simple.docx");

    點擊復制


    NPOI

    XWPFRun 可用于使用 NPOI 格式化文本


    using NPOI.XWPF.UserModel;
    XWPFDocument doc = new XWPFDocument();
    XWPFParagraph p1 = doc.CreateParagraph();
    p1.Alignment = ParagraphAlignment.CENTER;
    p1.BorderBottom = Borders.DOUBLE;
    p1.BorderTop = Borders.DOUBLE;
    p1.BorderRight = Borders.DOUBLE;
    p1.BorderLeft = Borders.DOUBLE;
    p1.BorderBetween = Borders.SINGLE;
    p1.VerticalAlignment = TextAlignment.TOP;
    XWPFRun r1 = p1.CreateRun();
    r1.SetText("The quick brown fox");
    r1.SetBold(true);
    r1.FontFamily = "Courier";
    r1.SetUnderline(UnderlinePatterns.DotDotDash);
    r1.SetTextPosition(100);
    XWPFParagraph p2 = doc.CreateParagraph();
    p2.Alignment = ParagraphAlignment.RIGHT;
    //BORDERS
    p2.BorderBottom = Borders.DOUBLE;
    p2.BorderTop = Borders.DOUBLE;
    p2.BorderRight = Borders.DOUBLE;
    p2.BorderLeft = Borders.DOUBLE;
    p2.BorderBetween = Borders.SINGLE;
    XWPFRun r2 = p2.CreateRun();
    r2.SetText("jumped over the lazy dog");
    r2.SetStrike(true);
    r2.FontSize = 20;
    XWPFRun r3 = p2.CreateRun();
    r3.SetText("and went away");
    r3.SetStrike(true);
    r3.FontSize = 20;
    r3.Subscript = VerticalAlign.SUPERSCRIPT;
    r3.SetColor("FF0000");
    XWPFParagraph p3 = doc.CreateParagraph();
    p3.IsWordWrap = true;
    p3.IsPageBreak = true;
    p3.Alignment = ParagraphAlignment.BOTH;
    p3.SpacingLineRule = LineSpacingRule.EXACT;
    p3.IndentationFirstLine = 600;
    XWPFRun r4 = p3.CreateRun();
    r4.SetTextPosition(20);
    r4.SetText("To be, or not to be: that is the question: "
    + "Whether 'tis nobler in the mind to suffer "
    + "The slings and arrows of outrageous fortune, "
    + "Or to take arms against a sea of troubles, "
    + "And by opposing end them? To die: to sleep; ");
    r4.AddBreak(BreakType.PAGE);
    r4.SetText("No more; and by a sleep to say we end "
    + "The heart-ache and the thousand natural shocks "
    + "That flesh is heir to, 'tis a consummation "
    + "Devoutly to be wish'd. To die, to sleep; "
    + "To sleep: perchance to dream: ay, there's the rub; "
    + ".......");
    r4.IsItalic = true;
    //This would imply that this break shall be treated as a simple line break, and break the line after that word:
    XWPFRun r5 = p3.CreateRun();
    r5.SetTextPosition(-10);
    r5.SetText("For in that sleep of death what dreams may come");
    r5.AddCarriageReturn();
    r5.SetText("When we have shuffled off this mortal coil,"
    + "Must give us pause: there's the respect"
    + "That makes calamity of so long life;");
    r5.AddBreak();
    r5.SetText("For who would bear the whips and scorns of time,"
    + "The oppressor's wrong, the proud man's contumely,");
    r5.AddBreak(BreakClear.ALL);
    r5.SetText("The pangs of despised love, the law's delay,"
    + "The insolence of office and the spurns" + ".......");
    FileStream out1 = new FileStream("simple.docx", FileMode.Create);
    doc.Write(out1);
    out1.Close();

    點擊復制

    下載運行代碼


    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();