Klasse BuildingBlockType - Typ von Baustein dar (Word VBA)

Die Klasse BuildingBlockType stellt einen Typ von Baustein dar. Um eine BuildingBlockType -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise


Dim bbt as BuildingBlockType
Set bbt = CustomizationContext.BuildingBlockTypes(Index:=1)

For Each

Hier ist ein Beispiel für die Verarbeitung der BuildingBlockType -Elemente in einer Sammlung


Dim bbt As BuildingBlockType
For Each bbt In CustomizationContext.BuildingBlockTypes
	
Next bbt

Categories

Gibt eine Categories -Auflistung zurück, die die Kategorien eines Bausteintyps darstellt.


Dim ctgsCategories As Categories
Set ctgsCategories = CustomizationContext.BuildingBlockTypes(1).Categories

Index

Gibt einen Wert vom Typ Long zurück, der die Position eines Elements in einer Auflistung darstellt.


Dim lngIndex As Long
lngIndex = CustomizationContext.BuildingBlockTypes(1).Index

Name

Gibt einen Wert vom Typ String zurück, der den lokalisierten Namen eines Bausteins darstellt.


Dim strName As String
strName = CustomizationContext.BuildingBlockTypes(1).Name