Sets or returns the value of the footer margin in inches.

 public double FooterMargin{ get; set; }
Public Property FooterMargin() As Double

This is the space between the footer data and the bottom edge of the printed page. This is set to.5 by default. The valid range of values is 0 through 100, and is also limited by the paper size.


          //--- Get FooterMargin
          double ftrMargin = ps.FooterMargin;

          //--- Set FooterMargin
          ps.FooterMargin = 1;
        

          '--- Get FooterMargin
          Dim ftrMargin As Double = ps.FooterMargin

          '--- Set FooterMargin
          ps.FooterMargin = 1