Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Headers.cs 931B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*************************************************************************************
  2. DocX – DocX is the community edition of Xceed Words for .NET
  3. Copyright (C) 2009-2016 Xceed Software Inc.
  4. This program is provided to you under the terms of the Microsoft Public
  5. License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
  6. For more features and fast professional support,
  7. pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/
  8. ***********************************************************************************/
  9. namespace Xceed.Words.NET
  10. {
  11. public class Headers
  12. {
  13. #region Public Properties
  14. public Header Odd
  15. {
  16. get;
  17. set;
  18. }
  19. public Header Even
  20. {
  21. get;
  22. set;
  23. }
  24. public Header First
  25. {
  26. get;
  27. set;
  28. }
  29. #endregion
  30. #region Constructors
  31. internal Headers()
  32. {
  33. }
  34. #endregion
  35. }
  36. }