Classe PivotLineCells (Excel VBA)

Coleção de objetos PivotCell para uma linha dinâmica específica. Para usar uma variável de classe PivotLineCells, ela primeiro precisa ser instanciada por exemplo


Dim plcs as PivotLineCells
Set plcs = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull

For Each

Aqui está um exemplo de processamento dos itens PivotLineCells em uma coleção.


Dim pvtlcelPivotLineCell As PivotCell
For Each pvtlcelPivotLineCell In Application.PivotLineCells
	
Next pvtlcelPivotLineCell

Count

Retorna o número de itens na coleção PivotLineCells . Somente leitura.


Dim lngCount As Long
lngCount = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Count

Full

Quando true, todos os PivotLineCells na linha dinâmica incluindo aqueles ocultos no formato compacto são recuperados. Boolean somente leitura.


Dim booFull As Boolean
booFull = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull.Full

Item

Retorna um elemento específico do objeto da coleção PivotLineCells pela sua posição na coleção. Somente leitura.

Item (Index)

Index: Especifica a posição de um elemento da coleção.


Dim pvtlcelItem As PivotCell
Set pvtlcelItem = ActiveCell.PivotCell.PivotColumnLine.PivotLineCellsFull(Index:=1)