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
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:vb.net}
Public Property PrintCellErrorsAs() As CellErrorsAs
{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}