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
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} representing if the headers and footers should be different for odd and even pages, such as when the pages in this document will be mirrored. When set to {{true}}, it creates one header or footer for even\-numbered pages and a different header or footer for odd\-numbered pages.{excerpt}
{signature:C#}
 public boolean PrintFacingPages{ get; set; }
{signature}{signature:vb.net}
Public Property PrintFacingPages() As Boolean
{signature}
{remarks}MS Word equivalent: File menu > Page Setup... > Layout tab > Headers and footers section > Different odd and even

{remarks}
{example}{code:csharp|title=C#}

          //--- Return PrintFacingPages
          bool printFacingPages = oDocument.PrintFacingPages;

          //--- Set PrintFacingPages
          oDocument.PrintFacingPages = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return PrintFacingPages
          Dim printFacingPages As Boolean = oDocument.PrintFacingPages

          '--- Set PrintFacingPages
          oDocument.PrintFacingPages = True
        {code}

{example}