Klasse Category - Kategorie (Word VBA)
Die Klasse Category stellt eine einzelne Kategorie eines Bausteintyps dar. Um eine Category -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise
Dim ctg as Category
Set ctg = CustomizationContext.BuildingBlockEntries(1).Category
For Each
Hier ist ein Beispiel für die Verarbeitung der Category -Elemente in einer Sammlung
Dim ctg As Category
For Each ctg In CustomizationContext.BuildingBlockEntries.Categories
Next ctg
BuildingBlocks
Gibt eine BuildingBlocks -Auflistung zurück, die die Bausteine für eine Kategorie darstellt.
Dim bbsBuildingBlocks As BuildingBlocks
Set bbsBuildingBlocks = CustomizationContext.BuildingBlockEntries(1).Category.BuildingBlocks
Index
Gibt einen Wert vom Typ Long zurück, der die Position eines Elements in einer Auflistung darstellt.
Dim lngIndex As Long
lngIndex = CustomizationContext.BuildingBlockEntries(1).Category.Index
Name
Gibt den Namen des angegebenen Objekts zurück.
Dim strName As String
strName = CustomizationContext.BuildingBlockEntries(1).Category.Name
Type
Gibt ein BuildingBlockType -Objekt zurück, das den Typ des Bausteins für eine Baustein Kategorie darstellt.
Dim bbtType As BuildingBlockType
Set bbtType = CustomizationContext.BuildingBlockEntries(1).Category.Type