2012-11-15 89 views
4

我還是一個初學者。你能告訴我爲什麼這不是格式化選擇?VBA Word格式化Selection.typetext

Selection.TypeText "title" 

With Selection 

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

回答

4

它確實格式化文本,但的With Selection命令後僅文本添加

改變順序,把Selection.TypeText "title"最後,它會工作。 :)