Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Introducedin
8.4

...

8.4
Description

Excerpt

Sets or returns whether Microsoft Excel will automatically show a caption in place of a empty cell.

Signature
C#
C#
 public boolean ShowEmptyValueCaption{ get; set; }
{signature}

{signature:
}
Signature
vb.net
vb.net
Public Property ShowEmptyValueCaption() As Boolean
{signature}

{example}{code:csharp|title=C#}
Example
Code Block
csharp
csharp
titleC#


          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Open(@"C:\MySpreadsheet.xlsx");
          Worksheet ws = wb.Worksheets[0];
          ws.PivotTables[0].PivotTableSettings.ShowEmptyValueCaption= true;
        
{code} {code:vbnet|title=
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.PivotTables(0).PivotTableSettings.ShowEmptyValueCaption= true;
        
{code} {example} {remarks}While {{ShowEmptyValueCaption}} is {{true}} by default, {{[EmptyValueCaption|PivotTableSettings.EmptyValueCaption]}} also needs to be set. {remarks}
Remarks

While ShowEmptyValueCaption is true by default, EmptyValueCaption also needs to be set.