Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Introducedin
8.7
8.7
Description

Excerpt

Sets or returns whether the worksheet will allow users to use PivotTable reports when the worksheet is protected.

Signature
C#
C#
 public boolean AllowUsePivotTableReports{ get; set; }
Signature
vb.net
vb.net
Public Property AllowUsePivotTableReports() As Boolean
Example
Code Block
csharp
csharp
titleC#

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Open(@"C:\MySpreadsheet.xlsx");
          Worksheet ws = wb.Worksheets[0];
          ws.SheetProtection.AllowUsePivotTableReports = true;
          ws.Protect("password");
        
Code Block
vbnet
vbnet
titlevb.net

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Open("C:\MySpreadsheet.xlsx")
          Dim ws As Worksheet = wb.Worksheets(0)
          ws.SheetProtection.AllowUsePivotTableReports = true
          ws.Protect("password");