Page tree

Versions Compared

Key

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

Excerpt

Sets or returns whether Microsoft Excel will automatically show a caption in place of an error.

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

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Open(@"C:\MySpreadsheet.xls");
          Worksheet ws = wb.Worksheets[0];
          ws.PivotTables[0].PivotTableSettings.ShowFriendlyErrorCaption= true;
        
Code Block
vbnet
vbnet
titlevb.net

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Open("C:\MySpreadsheet.xls")
          Dim ws As Worksheet = wb.Worksheets(0)
          ws.PivotTables(0).PivotTableSettings.ShowFriendlyErrorCaption= true;
        
Remarks

ShowFriendlyErrorCaption is false by default. If it is set to true, a FriendlyErrorCaption also needs to be set.