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

...

Signature
vb.net
vb.net
Public Property PrintArea() As Area
Remarks

By default all of the content will be printed, and PrintArea will return an area covering the entire worksheet.

Example
Code Block
csharp
csharp
titleC#

          //--- Get PrintArea
          Area prntArea = ps.PrintArea;

          //--- Set PrintArea
          ps.PrintArea = prntArea;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Get PrintArea
          Dim prntArea As Area = ps.PrintArea

          '--- Set PrintArea
          ps.PrintArea = prntArea