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 セキュリティ
- 直前の呼び出し元に対する完全な信頼。 このメンバーは、部分的に信頼されているコードから使用することはできません。 詳細については、「部分信頼コードからのライブラリの使用」を参照してください。