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