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.

 public boolean PrintFacingPages{ get; set; }
Public Property PrintFacingPages() As Boolean

MS Word equivalent: File menu > Page Setup... > Layout tab > Headers and footers section > Different odd and even


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

          //--- Set PrintFacingPages
          oDocument.PrintFacingPages = true;
        

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

          '--- Set PrintFacingPages
          oDocument.PrintFacingPages = True