다음을 통해 공유


WorkbookBase.PivotCaches 메서드

지정된 통합 문서의 모든 피벗 테이블 캐시를 나타내는 Microsoft.Office.Interop.Excel.PivotCaches 컬렉션을 가져옵니다.

네임스페이스:  Microsoft.Office.Tools.Excel
어셈블리:  Microsoft.Office.Tools.Excel.v4.0.Utilities(Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)

구문

‘선언
Public Function PivotCaches As PivotCaches
public PivotCaches PivotCaches()

반환 값

형식: Microsoft.Office.Interop.Excel.PivotCaches
지정된 통합 문서의 모든 피벗 테이블 캐시를 나타내는 Microsoft.Office.Interop.Excel.PivotCaches 컬렉션입니다.

예제

다음 코드 예제에서는 PivotCaches 메서드를 사용하여 현재 통합 문서의 각 Microsoft.Office.Interop.Excel.PivotCache를 현재 통합 문서를 열 때마다 자동으로 업데이트되도록 설정합니다.

이 예제는 문서 수준 사용자 지정을 위한 것입니다.

Private Sub WorkbookPivotCaches()
    Dim caches As Excel.PivotCaches = Me.PivotCaches()

    If Not (caches Is Nothing) Then
        Dim i As Integer
        For i = 1 To caches.Count
            caches(i).RefreshOnFileOpen = True
        Next i
    End If
End Sub
private void WorkbookPivotCaches()
{
    Excel.PivotCaches caches = this.PivotCaches();

    if (caches != null)
    {
        for (int i = 1; i < caches.Count; i++)
        {
            caches[i].RefreshOnFileOpen = true;
        }
    }
}

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

WorkbookBase 클래스

Microsoft.Office.Tools.Excel 네임스페이스