vbscript 在文档末尾插入段落

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 在文档末尾插入段落相关的知识,希望对你有一定的参考价值。

Option Explicit

Sub Test()

Selection.EndKey Unit:=wdStory
Dim oPara1 As Word.Paragraph

Dim oDoc As Word.Document
Set oDoc = ActiveDocument

Set oPara1 = oDoc.Content.Paragraphs.Add
With oPara1.Range
    .ParagraphFormat.Alignment = wdAlignParagraphCenter
    .InsertParagraphAfter
    With .Font
        .Name = "Times New Roman"
        .Size = "12"
        .Bold = True
    End With
End With

Selection.TypeText Text:=vbCr
Selection.TypeText Text:="Text goes here" & vbCr


End Sub

以上是关于vbscript 在文档末尾插入段落的主要内容,如果未能解决你的问题,请参考以下文章

C#如何向word文档插入一个新段落及隐藏段落

Word文档中有些空白页删不掉怎么办?

在XWPFDocument的任何位置插入XWPFParagraph

vbscript 删除空白段落

使用谷歌应用程序脚本以编程方式将脚注添加到谷歌文档中

使用VBA提取word文档的段落号