Application.TemplateFolderPath 属性 (Publisher)
返回一个 字符串 ,表示 Microsoft Publisher 模板所存储的位置。 此为只读属性。
语法
表达式。TemplateFolderPath
expression:表示 Application 对象的变量。
返回值
字符串
示例
本示例创建一个新出版物并编辑母版页,以在页面左上角的星形中包含页码;然后,它将新出版物保存到模板文件夹位置,以便它可以用作模板。
Sub CreateNewPubTemplate()
Dim AppPub As Application
Dim DocPub As Document
Dim strFolder As String
Set AppPub = New Publisher.Application
Set DocPub = AppPub.NewDocument
AppPub.ActiveWindow.Visible = True
strFolder = AppPub.TemplateFolderPath
With DocPub
With .MasterPages(1).Shapes.AddShape _
(Type:=msoShape5pointStar, Left:=36, _
Top:=36, Width:=50, Height:=50)
.Fill.ForeColor.RGB = RGB(Red:=255, Green:=0, Blue:=0)
With .TextFrame.TextRange
.InsertPageNumber
.ParagraphFormat.Alignment = pbParagraphAlignmentCenter
With .Font
.Bold = msoTrue
.Color.RGB = RGB(Red:=255, Green:=255, Blue:=255)
.Size = 12
End With
End With
End With
.SaveAs FileName:=strFolder & "\NewPubTemplt.pub"
End With
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。