VBA Word格式Selection.typetext

时间:2012-11-15 15:37:00

标签: vba ms-word formatting word-vba

我还是初学者。你能告诉我为什么不格式化选择吗?

Selection.TypeText "title"

With Selection

        .Font.Bold = True
        .Font.Name = "Arial"
        .Font.ColorIndex = wdDarkBlue
        .ParagraphFormat.Alignment = wdAlignParagraphCenter
        .ParagraphFormat.SpaceAfter = 0
End With

1 个答案:

答案 0 :(得分:4)

它会对文本进行格式化,但只会在 With Selection命令后添加文本。

更改订单,将Selection.TypeText "title"放在最后,它会起作用。 :)