Klasse Actions (Excel VBA)
Eine Auflistung aller Action -Objekte für die angegebene Datenreihe. Um eine Actions -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise
Dim acts as Actions
Set acts = ActiveCell.PivotTable.PivotValueCell.ServerActions
Count
Gibt die Anzahl der Objekte in der Auflistung zurück.
Dim lngCount As Long
lngCount = ActiveCell.PivotTable.PivotValueCell.ServerActions.Count
Item
Gibt ein Actions -Objekt zurück, das eine Auflistung von Aktionen in einer Arbeitsmappe darstellt.
Item (Index)
Index: Indexwert der Aktion.
Dim actItem As Action
Set actItem = ActiveCell.PivotTable.PivotValueCell.ServerActions(Index:=1)