Page tree

Versions Compared

Key

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

Excerpt

Sets or returns how cell errors will appear on the printed worksheet.

(This is not supported for charts.)

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

          //--- Get PrintCellErrorAs
          PageSetup.CellErrorsAs errorsAs = ps.PrintCellErrorsAs;

          //--- Set PrintCellErrorAs
          ps.PrintCellErrorsAs = PageSetup.CellErrorsAs.Dash;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get PrintCellErrorAs
          Dim errorsAs As PageSetup.CellErrorsAs = ps.PrintCellErrorsAs

          '--- Set PrintCellErrorAs
          ps.PrintCellErrorsAs = PageSetup.CellErrorsAs.Dash
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns how cell errors will appear on the printed worksheet.

 _(This is not supported for charts.)_{excerpt}
{signature:C#}
 public CellErrorsAs PrintCellErrorsAs{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property PrintCellErrorsAs() As CellErrorsAs
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle