| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /***************************************************************************************
-
- 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 PdfSample
- {
- #region Private Members
-
-
- #endregion
-
- #region Constructors
-
- static PdfSample()
- {
- }
-
- #endregion
-
- #region Public Methods
-
- /// <summary>
- /// Load a document and convert it to PDF.
- /// </summary>
- public static void ConvertToPDF()
- {
-
- // This option is available when you buy Xceed Words for .NET from https://xceed.com/xceed-words-for-net/.
- }
-
- #endregion
- }
- }
|