Page tree

Versions Compared

Key

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

...

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

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

Example
Code Block
csharp
csharp
titleC#
          //--- Get PrintBlackAndWhite
          bool bw = ps.PrintInBlackAndWhite;

          //--- Set PrintBlackAndWhite
          ps.PrintInBlackAndWhite = true;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get PrintBlackAndWhite
          Dim bw As Boolean = ps.PrintInBlackAndWhite

          '--- Set PrintBlackAndWhite
          ps.PrintInBlackAndWhite = True