Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Signature
vb.net
vb.net
<p>Public Property PrintAsDraft() As Boolean</p>
Remarks

This property has no effect when rendering the worksheet to a PDF document.

Example
Code Block
csharp
csharp
titleC#
          //--- Get PrintAsDraft
          bool draft = ps.PrintAsDraft;

          //--- Set PrintAsDraft
          ps.PrintAsDraft = true;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get PrintAsDraft
          Dim draft As Boolean = ps.PrintAsDraft

          '--- Set PrintAsDraft
          ps.PrintAsDraft = True