BuildingBlocks.Add 方法 (Word)

创建新的构建基块,并返回一个 BuildingBlock 对象。

语法

表达式添加 (名称范围说明InsertOptions)

表达 返回 BuildingBlocks 对象的表达式。

参数

名称 必需/可选 数据类型 说明
Name 必需 String 指定生成块条目的名称。 对应于 BuildingBlock 对象的 Name 属性。
Range 必需 Range 指定生成块条目的值。 对应于 BuildingBlock 对象的 Value 属性。
Description 可选 Variant 指定生成块条目的说明。 对应于 BuildingBlock 对象的 Description 属性。
InsertOptions 可选 WdDocPartInsertOptions 指定是将生成块条目作为页、段落插入还是将其内嵌。 如果省略,则默认值为 wdInsertContent。 对应于 BuildingBlock 对象的 InsertOptions 属性。

返回值

BuildingBlock

示例

以下示例将一个新的生成块自动文本条目添加到模板集合中的第一个模板内。

Dim objTemplate As Template 
 
Set objTemplate = Templates(1) 
 
objTemplate.BuildingBlockTypes(wdTypeAutoText) _ 
 .Categories("General").BuildingBlocks _ 
 .Add Name:="New Building Block", _ 
 Range:=Selection.Range

另请参阅

BuildingBlocks 集合

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。