/*************************************************************************************** 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.Collections.Generic; using System.Threading; namespace Xceed.Words.NET.Examples { public class Program { internal const string SampleDirectory = @"..\..\Samples\"; private static void Main( string[] args ) { Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo( "en-US" ); //Paragraphs ParagraphSample.SimpleFormattedParagraphs(); ParagraphSample.ForceParagraphOnSinglePage(); ParagraphSample.ForceMultiParagraphsOnSinglePage(); ParagraphSample.TextActions(); ParagraphSample.Heading(); //Document DocumentSample.AddCustomProperties(); DocumentSample.ReplaceText(); DocumentSample.ApplyTemplate(); DocumentSample.AppendDocument(); //Images ImageSample.AddPicture(); ImageSample.CopyPicture(); ImageSample.ModifyImage(); //Indentation/Direction/Margins MarginSample.SetDirection(); MarginSample.Indentation(); MarginSample.Margins(); //Header/Footers HeaderFooterSample.HeadersFooters(); //Tables TableSample.InsertRowAndImageTable(); TableSample.TextDirectionTable(); TableSample.CreateRowsFromTemplate(); TableSample.ColumnsWidth(); TableSample.MergeCells(); //Hyperlink HyperlinkSample.Hyperlinks(); //Section SectionSample.InsertSections(); //Lists ListSample.AddList(); //Equations EquationSample.InsertEquation(); //Bookmarks BookmarkSample.InsertBookmarks(); BookmarkSample.ReplaceText(); //Charts ChartSample.BarChart(); ChartSample.LineChart(); ChartSample.PieChart(); ChartSample.Chart3D(); //Tale of Content TableOfContentSample.InsertTableOfContent(); TableOfContentSample.InsertTableOfContentWithReference(); //Lines LineSample.InsertHorizontalLine(); //Protection ProtectionSample.AddPasswordProtection(); ProtectionSample.AddProtection(); //Parallel ParallelSample.DoParallelActions(); //Others MiscellaneousSample.CreateRecipe(); MiscellaneousSample.CompanyReport(); MiscellaneousSample.CreateInvoice(); Console.WriteLine( "\nPress any key to exit." ); Console.ReadKey(); } #region Charts private class ChartData { public String Mounth { get; set; } public Double Money { get; set; } public static List CreateCompanyList1() { List company1 = new List(); company1.Add( new ChartData() { Mounth = "January", Money = 100 } ); company1.Add( new ChartData() { Mounth = "February", Money = 120 } ); company1.Add( new ChartData() { Mounth = "March", Money = 140 } ); return company1; } public static List CreateCompanyList2() { List company2 = new List(); company2.Add( new ChartData() { Mounth = "January", Money = 80 } ); company2.Add( new ChartData() { Mounth = "February", Money = 160 } ); company2.Add( new ChartData() { Mounth = "March", Money = 130 } ); return company2; } } #endregion } }