BuildingBlockType オブジェクト (Word)
文書パーツの種類を表します。 各 BuildingBlockType オブジェクトは、BuildingBlockTypes コレクションのメンバーです。
注釈
Microsoft Word は、文書パーツの編成に種類とカテゴリを使用します。 各文書パーツは、 WdBuildingBlockTypes クラスの定数で表されます。 特定の文書パーツの種類のカテゴリにアクセスするには、 Categories プロパティを使用します。 The following example prints the type and category names of all the building blocks in the first template to the Immediate Window. (This example assumes that the Immediate Window is visible.)
Dim objTemplate As Template
Dim objBBT As BuildingBlockType
Dim objCat As Category
Dim intCount As Integer
Dim intCountCat As Integer
Set objTemplate = Templates(1)
For intCount = 1 To objTemplate.BuildingBlockTypes.Count
Set objBBT = objTemplate.BuildingBlockTypes(intCount)
If objBBT.Categories.Count > 0 Then
Debug.Print objBBT.Name
For intCountCat = 1 To objBBT.Categories.Count
Set objCat = objBBT.Categories(intCountCat)
Debug.Print vbTab & objCat.Name
Next
End If
Next
文書パーツの詳細については、「文書パーツを操作する」を参照してください。
プロパティ
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。