Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Wiki Markup
{introducedin: 8.4

...

Description

Excerpt

Sets or returns the caption displayed in place of a empty cell.

{signature}
{example}{code:csharp|title=C#}

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Open(@"C:\MySpreadsheet.xlsx");
          Worksheet ws = wb.Worksheets[0];
          ws.PivotTables[0].PivotTableSettings.EmptyValueCaption= "EmptyCell";
        
{code}
{code:vbnet|title=vb.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.EmptyValueCaption= "EmptyCell";
        
Signature
C#C#
}
{description}

{excerpt}Sets or returns the caption displayed in place of a empty cell.{excerpt}
{signature:C#} public System.String EmptyValueCaption{ get; set; }
Signature
{signature}
{signature:vb.net
vb.net
}Public Property EmptyValueCaption() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle
Remarks
EmptyValueCaption is only displayed when ShowEmptyValueCaption is true.
{code}

{example}
{remarks}{{EmptyValueCaption}} is only displayed when [ShowEmptyValueCaption|PivotTableSettings.ShowEmptyValueCaption] is {{true}}.
{remarks}