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

...

Description

Excerpt

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

Signature
C#
C#
 public double FooterMargin{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property FooterMargin() As Double
{signature}
{remarks}
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.
{remarks}
{example}{code:csharp|title=C#}
Remarks

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.

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set FooterMargin
          ps.FooterMargin = 1;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set FooterMargin
          ps.FooterMargin = 1
        
{code} {example}