Sets or returns the area of the worksheet that will be printed. Content outside of this area will not be printed.

 public Area PrintArea{ get; set; }
Public Property PrintArea() As Area

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

          //--- Set PrintArea
          ps.PrintArea = prntArea;
        

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

          '--- Set PrintArea
          ps.PrintArea = prntArea