Klasse BuildingBlockTypes (Word VBA)
Die Klasse BuildingBlockTypes stellt eine Auflistung von BuildingBlockType -Objekten dar. Um eine BuildingBlockTypes -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise
Dim bbts as BuildingBlockTypes
Set bbts = CustomizationContext.BuildingBlockTypes
For Each
Hier ist ein Beispiel für die Verarbeitung der BuildingBlockTypes -Elemente in einer Sammlung
Dim bbt As BuildingBlockType
For Each bbt In CustomizationContext.BuildingBlockTypes
Next bbt
Count
Gibt die Anzahl der in der BuildingBlockTypes-Auflistung enthaltenen Elemente zurück.
Dim lngCount As Long
lngCount = CustomizationContext.BuildingBlockTypes.Count
Item
Gibt ein BuildingBlockType -Objekt zurück, das das angegebene Element in der Auflistung darstellt.
Item (Index)
Index: Gibt den Bausteintyp des Elements in der Auflistung an.
Dim bbt As BuildingBlockType
Set bbt = CustomizationContext.BuildingBlockTypes(Index:=1)