Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /***************************************************************************************
  2. DocX – DocX is the community edition of Xceed Words for .NET
  3. Copyright (C) 2009-2017 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. using System;
  10. using System.IO;
  11. namespace Xceed.Words.NET.Examples
  12. {
  13. public class PdfSample
  14. {
  15. #region Private Members
  16. #endregion
  17. #region Constructors
  18. static PdfSample()
  19. {
  20. }
  21. #endregion
  22. #region Public Methods
  23. /// <summary>
  24. /// Load a document and convert it to PDF.
  25. /// </summary>
  26. public static void ConvertToPDF()
  27. {
  28. // This option is available when you buy Xceed Words for .NET from https://xceed.com/xceed-words-for-net/.
  29. }
  30. #endregion
  31. }
  32. }