BuildingBlocks.Add Method
Creates a new building block and returns a BuildingBlock object.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Function Add ( _
Name As String, _
Range As Range, _
ByRef Description As Object, _
InsertOptions As WdDocPartInsertOptions _
) As BuildingBlock
'Usage
Dim instance As BuildingBlocks
Dim Name As String
Dim Range As Range
Dim Description As Object
Dim InsertOptions As WdDocPartInsertOptions
Dim returnValue As BuildingBlock
returnValue = instance.Add(Name, Range, _
Description, InsertOptions)
BuildingBlock Add(
string Name,
Range Range,
ref Object Description,
WdDocPartInsertOptions InsertOptions
)
Parameters
- Name
Type: System.String
Specifies the name of the building block entry. Corresponds to the Name property of the BuildingBlock object.
- Range
Type: Microsoft.Office.Interop.Word.Range
Specifies the value of the buildling block entry. Corresponds to the Value property of the BuildingBlock object.
- Description
Type: System.Object%
Specifies the description of the buildling block entry. Corresponds to the Description property of the BuildingBlock object.
- InsertOptions
Type: Microsoft.Office.Interop.Word.WdDocPartInsertOptions
Specifies whether the building block entry is inserted as a page, a paragraph, or inline. If omitted, the default value is wdInsertContent. Corresponds to the InsertOptions property for the BuildingBlock object.
Return Value
Type: Microsoft.Office.Interop.Word.BuildingBlock
BuildingBlock