Klasse PivotLineCells (Excel VBA)
Auflistung von PivotCell -Objekten für eine bestimmte pivotlinie. Um eine PivotLineCells -Klassenvariable zu verwenden, muss sie zuerst instanziert werden, beispielsweise
Dim plcs as PivotLineCells
Set plcs = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull
For Each
Hier ist ein Beispiel für die Verarbeitung der PivotLineCells -Elemente in einer Sammlung
Dim pvtlcelPivotLineCell As PivotCell
For Each pvtlcelPivotLineCell In Application.PivotLineCells
Next pvtlcelPivotLineCell
Count
Gibt die Anzahl der Elemente in der PivotLineCells -Auflistung zurück.
Dim lngCount As Long
lngCount = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Count
Full
Bei truewerden alle PivotLineCells in der pivotlinie (einschließlich der in kompakter Form ausgeblendeten) abgerufen.
Dim booFull As Boolean
booFull = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Full
Item
Gibt ein bestimmtes Element des PivotLineCells -Auflistungsobjekts anhand seiner Position in der Auflistung zurück.
Item (Index)
Index: Gibt die Position eines Elements der Auflistung an.
Dim pvtlcelItem As PivotCell
Set pvtlcelItem = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull(Index:=1)