Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Introduced in build 8.4

Description

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

C#
public System.String EmptyValueCaption{ get; set; }
vb.net
Public Property EmptyValueCaption() As String

Examples

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

Remarks

EmptyValueCaption is only displayed when ShowEmptyValueCaption is true.
  • No labels