| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /***************************************************************************************
-
- DocX – DocX is the community edition of Xceed Words for .NET
-
- Copyright (C) 2009-2017 Xceed Software Inc.
-
- This program is provided to you under the terms of the Microsoft Public
- License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
-
- For more features and fast professional support,
- pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
-
- *************************************************************************************/
-
- using System;
- using System.IO;
-
- namespace Xceed.Words.NET.Examples
- {
- public class HeaderFooterSample
- {
- #region Private Members
-
- private const string HeaderFooterSampleOutputDirectory = Program.SampleDirectory + @"HeaderFooter\Output\";
-
- #endregion
-
- #region Constructors
-
- static HeaderFooterSample()
- {
- if( !Directory.Exists( HeaderFooterSample.HeaderFooterSampleOutputDirectory ) )
- {
- Directory.CreateDirectory( HeaderFooterSample.HeaderFooterSampleOutputDirectory );
- }
- }
-
- #endregion
-
- #region Public Methods
-
- /// <summary>
- /// Add three different types of headers and footers to a document.
- /// </summary>
- public static void HeadersFooters()
- {
- Console.WriteLine( "\tHeadersFooters()" );
-
- // Create a document.
- using( DocX document = DocX.Create( HeaderFooterSample.HeaderFooterSampleOutputDirectory + @"HeadersFooters.docx" ) )
- {
- // Insert a Paragraph in the first page of the document.
- var p1 = document.InsertParagraph("This is the ").Append( "first").Bold().Append(" page Content.");
- p1.SpacingBefore( 70d );
- p1.InsertPageBreakAfterSelf();
-
- // Insert a Paragraph in the second page of the document.
- var p2 = document.InsertParagraph( "This is the " ).Append( "second" ).Bold().Append( " page Content." );
- p2.InsertPageBreakAfterSelf();
-
- // Insert a Paragraph in the third page of the document.
- var p3 = document.InsertParagraph( "This is the " ).Append( "third" ).Bold().Append( " page Content." );
- p3.InsertPageBreakAfterSelf();
-
- // Insert a Paragraph in the third page of the document.
- var p4 = document.InsertParagraph( "This is the " ).Append( "fourth" ).Bold().Append( " page Content." );
-
- // Add Headers and Footers to the document.
- document.AddHeaders();
- document.AddFooters();
-
- // Force the first page to have a different Header and Footer.
- document.DifferentFirstPage = true;
-
- // Force odd & even pages to have different Headers and Footers.
- document.DifferentOddAndEvenPages = true;
-
- // Insert a Paragraph into the first Header.
- document.Headers.First.InsertParagraph("This is the ").Append("first").Bold().Append(" page header");
-
- // Insert a Paragraph into the first Footer.
- document.Footers.First.InsertParagraph( "This is the " ).Append( "first" ).Bold().Append( " page footer" );
-
- // Insert a Paragraph into the even Header.
- document.Headers.Even.InsertParagraph( "This is an " ).Append( "even" ).Bold().Append( " page header" );
-
- // Insert a Paragraph into the even Footer.
- document.Footers.Even.InsertParagraph( "This is an " ).Append( "even" ).Bold().Append( " page footer" );
-
- // Insert a Paragraph into the odd Header.
- document.Headers.Odd.InsertParagraph( "This is an " ).Append( "odd" ).Bold().Append( " page header" );
-
- // Insert a Paragraph into the odd Footer.
- document.Footers.Odd.InsertParagraph( "This is an " ).Append( "odd" ).Bold().Append( " page footer" );
-
- // Add the page number in the first Footer.
- document.Footers.First.InsertParagraph("Page #").AppendPageNumber( PageNumberFormat.normal );
-
- // Add the page number in the even Footers.
- document.Footers.Even.InsertParagraph( "Page #" ).AppendPageNumber( PageNumberFormat.normal );
-
- // Add the page number in the odd Footers.
- document.Footers.Odd.InsertParagraph( "Page #" ).AppendPageNumber( PageNumberFormat.normal );
-
- document.Save();
- Console.WriteLine( "\tCreated: HeadersFooters.docx\n" );
- }
- }
-
- #endregion
- }
- }
|