| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Drawing;
- using System.Drawing.Imaging;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- using Novacode;
-
- namespace Examples
- {
- class Program
- {
- static void Main(string[] args)
- {
- Setup();
- // Easy
- Console.WriteLine("\nRunning Easy Examples");
- HelloWorld();
- RightToLeft();
- Indentation();
-
- HeadersAndFooters();
- HyperlinksImagesTables();
- AddList();
-
- Equations();
-
- BarChart();
- PieChart();
- LineChart();
- Chart3D();
-
- // Intermediate
- Console.WriteLine("\nRunning Intermediate Examples");
- CreateInvoice();
-
- // Advanced
- Console.WriteLine("\nRunning Advanced Examples");
- ProgrammaticallyManipulateImbeddedImage();
- ReplaceTextParallel();
-
- Console.WriteLine("\nPress any key to exit.");
- Console.ReadKey();
- }
-
- private static void Setup()
- {
- if (!Directory.Exists("docs"))
- {
- Directory.CreateDirectory("docs");
- }
- }
-
- #region Charts
-
- private class ChartData
- {
- public String Mounth { get; set; }
- public Double Money { get; set; }
-
- public static List<ChartData> CreateCompanyList1()
- {
- List<ChartData> company1 = new List<ChartData>();
- 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<ChartData> CreateCompanyList2()
- {
- List<ChartData> company2 = new List<ChartData>();
- 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;
- }
- }
-
- private static void BarChart()
- {
- // Create new document.
- using (DocX document = DocX.Create(@"docs\BarChart.docx"))
- {
- // Create chart.
- BarChart c = new BarChart();
- c.BarDirection = BarDirection.Column;
- c.BarGrouping = BarGrouping.Standard;
- c.GapWidth = 400;
- c.AddLegend(ChartLegendPosition.Bottom, false);
-
- // Create data.
- List<ChartData> company1 = ChartData.CreateCompanyList1();
- List<ChartData> company2 = ChartData.CreateCompanyList2();
-
- // Create and add series
- Series s1 = new Series("Microsoft");
- s1.Color = Color.GreenYellow;
- s1.Bind(company1, "Mounth", "Money");
- c.AddSeries(s1);
- Series s2 = new Series("Apple");
- s2.Bind(company2, "Mounth", "Money");
- c.AddSeries(s2);
-
- // Insert chart into document
- document.InsertParagraph("Diagram").FontSize(20);
- document.InsertChart(c);
- document.Save();
- }
- }
-
- private static void PieChart()
- {
- // Create new document.
- using (DocX document = DocX.Create(@"docs\PieChart.docx"))
- {
- // Create chart.
- PieChart c = new PieChart();
- c.AddLegend(ChartLegendPosition.Bottom, false);
-
- // Create data.
- List<ChartData> company2 = ChartData.CreateCompanyList2();
-
- // Create and add series
- Series s = new Series("Apple");
- s.Bind(company2, "Mounth", "Money");
- c.AddSeries(s);
-
- // Insert chart into document
- document.InsertParagraph("Diagram").FontSize(20);
- document.InsertChart(c);
- document.Save();
- }
- }
-
- private static void LineChart()
- {
- // Create new document.
- using (DocX document = DocX.Create(@"docs\LineChart.docx"))
- {
- // Create chart.
- LineChart c = new LineChart();
- c.AddLegend(ChartLegendPosition.Bottom, false);
-
- // Create data.
- List<ChartData> company1 = ChartData.CreateCompanyList1();
- List<ChartData> company2 = ChartData.CreateCompanyList2();
-
- // Create and add series
- Series s1 = new Series("Microsoft");
- s1.Color = Color.GreenYellow;
- s1.Bind(company1, "Mounth", "Money");
- c.AddSeries(s1);
- Series s2 = new Series("Apple");
- s2.Bind(company2, "Mounth", "Money");
- c.AddSeries(s2);
-
- // Insert chart into document
- document.InsertParagraph("Diagram").FontSize(20);
- document.InsertChart(c);
- document.Save();
- }
- }
-
- private static void Chart3D()
- {
- // Create new document.
- using (DocX document = DocX.Create(@"docs\3DChart.docx"))
- {
- // Create chart.
- BarChart c = new BarChart();
- c.View3D = true;
-
- // Create data.
- List<ChartData> company1 = ChartData.CreateCompanyList1();
-
- // Create and add series
- Series s = new Series("Microsoft");
- s.Color = Color.GreenYellow;
- s.Bind(company1, "Mounth", "Money");
- c.AddSeries(s);
-
- // Insert chart into document
- document.InsertParagraph("3D Diagram").FontSize(20);
- document.InsertChart(c);
- document.Save();
- }
- }
-
- #endregion
-
- /// <summary>
- /// Create a document with two equations.
- /// </summary>
- private static void Equations()
- {
- Console.WriteLine("\nEquations()");
-
- // Create a new document.
- using (DocX document = DocX.Create(@"docs\Equations.docx"))
- {
- // Insert first Equation in this document.
- Paragraph pEquation1 = document.InsertEquation("x = y+z");
-
- // Insert second Equation in this document and add formatting.
- Paragraph pEquation2 = document.InsertEquation("x = (y+z)/t").FontSize(18).Color(Color.Blue);
-
- // Save this document to disk.
- document.Save();
- Console.WriteLine("\tCreated: docs\\Equations.docx\n");
- }
- }
-
- /// <summary>
- /// Create a document with a Paragraph whos first line is indented.
- /// </summary>
- private static void Indentation()
- {
- Console.WriteLine("\tIndentation()");
-
- // Create a new document.
- using (DocX document = DocX.Create(@"docs\Indentation.docx"))
- {
- // Create a new Paragraph.
- Paragraph p = document.InsertParagraph("Line 1\nLine 2\nLine 3");
-
- // Indent only the first line of the Paragraph.
- p.IndentationFirstLine = 1.0f;
-
-
- // Save all changes made to this document.
- document.Save();
- Console.WriteLine("\tCreated: docs\\Indentation.docx\n");
- }
- }
-
- /// <summary>
- /// Create a document that with RightToLeft text flow.
- /// </summary>
- private static void RightToLeft()
- {
- Console.WriteLine("\tRightToLeft()");
-
- // Create a new document.
- using (DocX document = DocX.Create(@"docs\RightToLeft.docx"))
- {
- // Create a new Paragraph with the text "Hello World".
- Paragraph p = document.InsertParagraph("Hello World.");
-
- // Make this Paragraph flow right to left. Default is left to right.
- p.Direction = Direction.RightToLeft;
-
- // You don't need to manually set the text direction foreach Paragraph, you can just call this function.
- document.SetDirection(Direction.RightToLeft);
-
- // Save all changes made to this document.
- document.Save();
- Console.WriteLine("\tCreated: docs\\RightToLeft.docx\n");
- }
- }
-
- /// <summary>
- /// Creates a document with a Hyperlink, an Image and a Table.
- /// </summary>
- private static void HyperlinksImagesTables()
- {
- Console.WriteLine("\tHyperlinksImagesTables()");
-
- // Create a document.
- using (DocX document = DocX.Create(@"docs\HyperlinksImagesTables.docx"))
- {
- // Add a hyperlink into the document.
- Hyperlink link = document.AddHyperlink("link", new Uri("http://www.google.com"));
-
- // Add a Table into the document.
- Table table = document.AddTable(2, 2);
- table.Design = TableDesign.ColorfulGridAccent2;
- table.Alignment = Alignment.center;
- table.Rows[0].Cells[0].Paragraphs[0].Append("1");
- table.Rows[0].Cells[1].Paragraphs[0].Append("2");
- table.Rows[1].Cells[0].Paragraphs[0].Append("3");
- table.Rows[1].Cells[1].Paragraphs[0].Append("4");
-
- Row newRow = table.InsertRow(table.Rows[1]);
- newRow.ReplaceText("4", "5");
-
- // Add an image into the document.
- RelativeDirectory rd = new RelativeDirectory(); // prepares the files for testing
- rd.Up(2);
- Novacode.Image image = document.AddImage(rd.Path + @"\images\logo_template.png");
-
- // Create a picture (A custom view of an Image).
- Picture picture = image.CreatePicture();
- picture.Rotation = 10;
- picture.SetPictureShape(BasicShapes.cube);
-
- // Insert a new Paragraph into the document.
- Paragraph title = document.InsertParagraph().Append("Test").FontSize(20).Font(new FontFamily("Comic Sans MS"));
- title.Alignment = Alignment.center;
-
- // Insert a new Paragraph into the document.
- Paragraph p1 = document.InsertParagraph();
-
- // Append content to the Paragraph
- p1.AppendLine("This line contains a ").Append("bold").Bold().Append(" word.");
- p1.AppendLine("Here is a cool ").AppendHyperlink(link).Append(".");
- p1.AppendLine();
- p1.AppendLine("Check out this picture ").AppendPicture(picture).Append(" its funky don't you think?");
- p1.AppendLine();
- p1.AppendLine("Can you check this Table of figures for me?");
- p1.AppendLine();
-
- // Insert the Table after Paragraph 1.
- p1.InsertTableAfterSelf(table);
-
- // Insert a new Paragraph into the document.
- Paragraph p2 = document.InsertParagraph();
-
- // Append content to the Paragraph.
- p2.AppendLine("Is it correct?");
-
- // Save this document.
- document.Save();
-
- Console.WriteLine("\tCreated: docs\\HyperlinksImagesTables.docx\n");
- }
- }
- private static void AddList()
- {
- Console.WriteLine("\tAddList()");
-
- using (var document = DocX.Create(@"docs\Lists.docx"))
- {
- var numberedList = document.AddList("First List Item.", 0, ListItemType.Numbered, 2);
- document.AddListItem(numberedList, "First sub list item", 1);
- document.AddListItem(numberedList, "Second List Item.");
- document.AddListItem(numberedList, "Third list item.");
- document.AddListItem(numberedList, "Nested item.", 1);
- document.AddListItem(numberedList, "Second nested item.", 1);
-
- var bulletedList = document.AddList("First Bulleted Item.", 0, ListItemType.Bulleted);
- document.AddListItem(bulletedList, "Second bullet item");
- document.AddListItem(bulletedList, "Sub bullet item", 1);
- document.AddListItem(bulletedList, "Second sub bullet item", 1);
- document.AddListItem(bulletedList, "Third bullet item");
-
- document.InsertList(numberedList);
- document.InsertList(bulletedList);
- document.Save();
- Console.WriteLine("\tCreated: docs\\Lists.docx");
- }
- }
-
- private static void HeadersAndFooters()
- {
- Console.WriteLine("\tHeadersAndFooters()");
-
- // Create a new document.
- using (DocX document = DocX.Create(@"docs\HeadersAndFooters.docx"))
- {
- // Add Headers and Footers to this document.
- document.AddHeaders();
- document.AddFooters();
-
- // Force the first page to have a different Header and Footer.
- document.DifferentFirstPage = true;
-
- // Force odd & even pages to have different Headers and Footers.
- document.DifferentOddAndEvenPages = true;
-
- // Get the first, odd and even Headers for this document.
- Header header_first = document.Headers.first;
- Header header_odd = document.Headers.odd;
- Header header_even = document.Headers.even;
-
- // Get the first, odd and even Footer for this document.
- Footer footer_first = document.Footers.first;
- Footer footer_odd = document.Footers.odd;
- Footer footer_even = document.Footers.even;
-
- // Insert a Paragraph into the first Header.
- Paragraph p0 = header_first.InsertParagraph();
- p0.Append("Hello First Header.").Bold();
-
- // Insert a Paragraph into the odd Header.
- Paragraph p1 = header_odd.InsertParagraph();
- p1.Append("Hello Odd Header.").Bold();
-
- // Insert a Paragraph into the even Header.
- Paragraph p2 = header_even.InsertParagraph();
- p2.Append("Hello Even Header.").Bold();
-
- // Insert a Paragraph into the first Footer.
- Paragraph p3 = footer_first.InsertParagraph();
- p3.Append("Hello First Footer.").Bold();
-
- // Insert a Paragraph into the odd Footer.
- Paragraph p4 = footer_odd.InsertParagraph();
- p4.Append("Hello Odd Footer.").Bold();
-
- // Insert a Paragraph into the even Header.
- Paragraph p5 = footer_even.InsertParagraph();
- p5.Append("Hello Even Footer.").Bold();
-
- // Insert a Paragraph into the document.
- Paragraph p6 = document.InsertParagraph();
- p6.AppendLine("Hello First page.");
-
- // Create a second page to show that the first page has its own header and footer.
- p6.InsertPageBreakAfterSelf();
-
- // Insert a Paragraph after the page break.
- Paragraph p7 = document.InsertParagraph();
- p7.AppendLine("Hello Second page.");
-
- // Create a third page to show that even and odd pages have different headers and footers.
- p7.InsertPageBreakAfterSelf();
-
- // Insert a Paragraph after the page break.
- Paragraph p8 = document.InsertParagraph();
- p8.AppendLine("Hello Third page.");
-
- //Insert a next page break, which is a section break combined with a page break
- document.InsertSectionPageBreak();
-
- //Insert a paragraph after the "Next" page break
- Paragraph p9 = document.InsertParagraph();
- p9.Append("Next page section break.");
-
- //Insert a continuous section break
- document.InsertSection();
-
- //Create a paragraph in the new section
- var p10 = document.InsertParagraph();
- p10.Append("Continuous section paragraph.");
-
- // Save all changes to this document.
- document.Save();
-
- Console.WriteLine("\tCreated: docs\\HeadersAndFooters.docx\n");
- }// Release this document from memory.
- }
-
- private static void CreateInvoice()
- {
- Console.WriteLine("\tCreateInvoice()");
- DocX g_document;
-
- try
- {
- // Store a global reference to the loaded document.
- g_document = DocX.Load(@"docs\InvoiceTemplate.docx");
-
- /*
- * The template 'InvoiceTemplate.docx' does exist,
- * so lets use it to create an invoice for a factitious company
- * called "The Happy Builder" and store a global reference it.
- */
- g_document = CreateInvoiceFromTemplate(DocX.Load(@"docs\InvoiceTemplate.docx"));
-
- // Save all changes made to this template as Invoice_The_Happy_Builder.docx (We don't want to replace InvoiceTemplate.docx).
- g_document.SaveAs(@"docs\Invoice_The_Happy_Builder.docx");
- Console.WriteLine("\tCreated: docs\\Invoice_The_Happy_Builder.docx\n");
- }
-
- // The template 'InvoiceTemplate.docx' does not exist, so create it.
- catch (FileNotFoundException)
- {
- // Create and store a global reference to the template 'InvoiceTemplate.docx'.
- g_document = CreateInvoiceTemplate();
-
- // Save the template 'InvoiceTemplate.docx'.
- g_document.Save();
- Console.WriteLine("\tCreated: docs\\InvoiceTemplate.docx");
-
- // The template exists now so re-call CreateInvoice().
- CreateInvoice();
- }
- }
-
- // Create an invoice for a factitious company called "The Happy Builder".
- private static DocX CreateInvoiceFromTemplate(DocX template)
- {
- #region Logo
- // A quick glance at the template shows us that the logo Paragraph is in row zero cell 1.
- Paragraph logo_paragraph = template.Tables[0].Rows[0].Cells[1].Paragraphs[0];
- // Remove the template Picture that is in this Paragraph.
- logo_paragraph.Pictures[0].Remove();
-
- // Add the Happy Builders logo to this document.
- RelativeDirectory rd = new RelativeDirectory(); // prepares the files for testing
- rd.Up(2);
- Novacode.Image logo = template.AddImage(rd.Path + @"\images\logo_the_happy_builder.png");
-
- // Insert the Happy Builders logo into this Paragraph.
- logo_paragraph.InsertPicture(logo.CreatePicture());
- #endregion
-
- #region Set CustomProperty values
- // Set the value of the custom property 'company_name'.
- template.AddCustomProperty(new CustomProperty("company_name", "The Happy Builder"));
-
- // Set the value of the custom property 'company_slogan'.
- template.AddCustomProperty(new CustomProperty("company_slogan", "No job too small"));
-
- // Set the value of the custom properties 'hired_company_address_line_one', 'hired_company_address_line_two' and 'hired_company_address_line_three'.
- template.AddCustomProperty(new CustomProperty("hired_company_address_line_one", "The Crooked House,"));
- template.AddCustomProperty(new CustomProperty("hired_company_address_line_two", "Dublin,"));
- template.AddCustomProperty(new CustomProperty("hired_company_address_line_three", "12345"));
-
- // Set the value of the custom property 'invoice_date'.
- template.AddCustomProperty(new CustomProperty("invoice_date", DateTime.Today.Date.ToString("d")));
-
- // Set the value of the custom property 'invoice_number'.
- template.AddCustomProperty(new CustomProperty("invoice_number", 1));
-
- // Set the value of the custom property 'hired_company_details_line_one' and 'hired_company_details_line_two'.
- template.AddCustomProperty(new CustomProperty("hired_company_details_line_one", "Business Street, Dublin, 12345"));
- template.AddCustomProperty(new CustomProperty("hired_company_details_line_two", "Phone: 012-345-6789, Fax: 012-345-6789, e-mail: support@thehappybuilder.com"));
- #endregion
-
- /*
- * InvoiceTemplate.docx contains a blank Table,
- * we want to replace this with a new Table that
- * contains all of our invoice data.
- */
- Table t = template.Tables[1];
- Table invoice_table = CreateAndInsertInvoiceTableAfter(t, ref template);
- t.Remove();
-
- // Return the template now that it has been modified to hold all of our custom data.
- return template;
- }
-
- // Create an invoice template.
- private static DocX CreateInvoiceTemplate()
- {
- // Create a new document.
- DocX document = DocX.Create(@"docs\InvoiceTemplate.docx");
-
- // Create a table for layout purposes (This table will be invisible).
- Table layout_table = document.InsertTable(2, 2);
- layout_table.Design = TableDesign.TableNormal;
- layout_table.AutoFit = AutoFit.Window;
-
- // Dark formatting
- Formatting dark_formatting = new Formatting();
- dark_formatting.Bold = true;
- dark_formatting.Size = 12;
- dark_formatting.FontColor = Color.FromArgb(31, 73, 125);
-
- // Light formatting
- Formatting light_formatting = new Formatting();
- light_formatting.Italic = true;
- light_formatting.Size = 11;
- light_formatting.FontColor = Color.FromArgb(79, 129, 189);
-
- #region Company Name
- // Get the upper left Paragraph in the layout_table.
- Paragraph upper_left_paragraph = layout_table.Rows[0].Cells[0].Paragraphs[0];
-
- // Create a custom property called company_name
- CustomProperty company_name = new CustomProperty("company_name", "Company Name");
-
- // Insert a field of type doc property (This will display the custom property 'company_name')
- layout_table.Rows[0].Cells[0].Paragraphs[0].InsertDocProperty(company_name, f: dark_formatting);
-
- // Force the next text insert to be on a new line.
- upper_left_paragraph.InsertText("\n", false);
- #endregion
-
- #region Company Slogan
- // Create a custom property called company_slogan
- CustomProperty company_slogan = new CustomProperty("company_slogan", "Company slogan goes here.");
-
- // Insert a field of type doc property (This will display the custom property 'company_slogan')
- upper_left_paragraph.InsertDocProperty(company_slogan, f: light_formatting);
- #endregion
-
- #region Company Logo
- // Get the upper right Paragraph in the layout_table.
- Paragraph upper_right_paragraph = layout_table.Rows[0].Cells[1].Paragraphs[0];
-
- // Add a template logo image to this document.
- RelativeDirectory rd = new RelativeDirectory(); // prepares the files for testing
- rd.Up(2);
- Novacode.Image logo = document.AddImage(rd.Path + @"\images\logo_template.png");
-
- // Insert this template logo into the upper right Paragraph.
- upper_right_paragraph.InsertPicture(logo.CreatePicture());
-
- upper_right_paragraph.Alignment = Alignment.right;
- #endregion
-
- // Custom properties cannot contain newlines, so the company address must be split into 3 custom properties.
- #region Hired Company Address
- // Create a custom property called company_address_line_one
- CustomProperty hired_company_address_line_one = new CustomProperty("hired_company_address_line_one", "Street Address,");
-
- // Get the lower left Paragraph in the layout_table.
- Paragraph lower_left_paragraph = layout_table.Rows[1].Cells[0].Paragraphs[0];
- lower_left_paragraph.InsertText("TO:\n", false, dark_formatting);
-
- // Insert a field of type doc property (This will display the custom property 'hired_company_address_line_one')
- lower_left_paragraph.InsertDocProperty(hired_company_address_line_one, f: light_formatting);
-
- // Force the next text insert to be on a new line.
- lower_left_paragraph.InsertText("\n", false);
-
- // Create a custom property called company_address_line_two
- CustomProperty hired_company_address_line_two = new CustomProperty("hired_company_address_line_two", "City,");
-
- // Insert a field of type doc property (This will display the custom property 'hired_company_address_line_two')
- lower_left_paragraph.InsertDocProperty(hired_company_address_line_two, f: light_formatting);
-
- // Force the next text insert to be on a new line.
- lower_left_paragraph.InsertText("\n", false);
-
- // Create a custom property called company_address_line_two
- CustomProperty hired_company_address_line_three = new CustomProperty("hired_company_address_line_three", "Zip Code");
-
- // Insert a field of type doc property (This will display the custom property 'hired_company_address_line_three')
- lower_left_paragraph.InsertDocProperty(hired_company_address_line_three, f: light_formatting);
- #endregion
-
- #region Date & Invoice number
- // Get the lower right Paragraph from the layout table.
- Paragraph lower_right_paragraph = layout_table.Rows[1].Cells[1].Paragraphs[0];
-
- CustomProperty invoice_date = new CustomProperty("invoice_date", DateTime.Today.Date.ToString("d"));
- lower_right_paragraph.InsertText("Date: ", false, dark_formatting);
- lower_right_paragraph.InsertDocProperty(invoice_date, f: light_formatting);
-
- CustomProperty invoice_number = new CustomProperty("invoice_number", 1);
- lower_right_paragraph.InsertText("\nInvoice: ", false, dark_formatting);
- lower_right_paragraph.InsertText("#", false, light_formatting);
- lower_right_paragraph.InsertDocProperty(invoice_number, f: light_formatting);
-
- lower_right_paragraph.Alignment = Alignment.right;
- #endregion
-
- // Insert an empty Paragraph between two Tables, so that they do not touch.
- document.InsertParagraph(string.Empty, false);
-
- // This table will hold all of the invoice data.
- Table invoice_table = document.InsertTable(4, 4);
- invoice_table.Design = TableDesign.LightShadingAccent1;
- invoice_table.Alignment = Alignment.center;
-
- // A nice thank you Paragraph.
- Paragraph thankyou = document.InsertParagraph("\nThank you for your business, we hope to work with you again soon.", false, dark_formatting);
- thankyou.Alignment = Alignment.center;
-
- #region Hired company details
- CustomProperty hired_company_details_line_one = new CustomProperty("hired_company_details_line_one", "Street Address, City, ZIP Code");
- CustomProperty hired_company_details_line_two = new CustomProperty("hired_company_details_line_two", "Phone: 000-000-0000, Fax: 000-000-0000, e-mail: support@companyname.com");
-
- Paragraph companyDetails = document.InsertParagraph(string.Empty, false);
- companyDetails.InsertDocProperty(hired_company_details_line_one, f: light_formatting);
- companyDetails.InsertText("\n", false);
- companyDetails.InsertDocProperty(hired_company_details_line_two, f: light_formatting);
- companyDetails.Alignment = Alignment.center;
- #endregion
-
- // Return the document now that it has been created.
- return document;
- }
-
- private static Table CreateAndInsertInvoiceTableAfter(Table t, ref DocX document)
- {
- // Grab data from somewhere (Most likely a database)
- DataTable data = GetDataFromDatabase();
-
- /*
- * The trick to replacing one Table with another,
- * is to insert the new Table after the old one,
- * and then remove the old one.
- */
- Table invoice_table = t.InsertTableAfterSelf(data.Rows.Count + 1, data.Columns.Count);
- invoice_table.Design = TableDesign.LightShadingAccent1;
-
- #region Table title
- Formatting table_title = new Formatting();
- table_title.Bold = true;
-
- invoice_table.Rows[0].Cells[0].Paragraphs[0].InsertText("Description", false, table_title);
- invoice_table.Rows[0].Cells[0].Paragraphs[0].Alignment = Alignment.center;
- invoice_table.Rows[0].Cells[1].Paragraphs[0].InsertText("Hours", false, table_title);
- invoice_table.Rows[0].Cells[1].Paragraphs[0].Alignment = Alignment.center;
- invoice_table.Rows[0].Cells[2].Paragraphs[0].InsertText("Rate", false, table_title);
- invoice_table.Rows[0].Cells[2].Paragraphs[0].Alignment = Alignment.center;
- invoice_table.Rows[0].Cells[3].Paragraphs[0].InsertText("Amount", false, table_title);
- invoice_table.Rows[0].Cells[3].Paragraphs[0].Alignment = Alignment.center;
- #endregion
-
- // Loop through the rows in the Table and insert data from the data source.
- for (int row = 1; row < invoice_table.RowCount; row++)
- {
- for (int cell = 0; cell < invoice_table.Rows[row].Cells.Count; cell++)
- {
- Paragraph cell_paragraph = invoice_table.Rows[row].Cells[cell].Paragraphs[0];
- cell_paragraph.InsertText(data.Rows[row - 1].ItemArray[cell].ToString(), false);
- }
- }
-
- // We want to fill in the total by suming the values from the amount column.
- Row total = invoice_table.InsertRow();
- total.Cells[0].Paragraphs[0].InsertText("Total:", false);
- Paragraph total_paragraph = total.Cells[invoice_table.ColumnCount - 1].Paragraphs[0];
-
- /*
- * Lots of people are scared of LINQ,
- * so I will walk you through this line by line.
- *
- * invoice_table.Rows is an IEnumerable<Row> (i.e a collection of rows), with LINQ you can query collections.
- * .Where(condition) is a filter that you want to apply to the items of this collection.
- * My condition is that the index of the row must be greater than 0 and less than RowCount.
- * .Select(something) lets you select something from each item in the filtered collection.
- * I am selecting the Text value from each row, for example €100, then I am remove the €,
- * and then I am parsing the remaining string as a double. This will return a collection of doubles,
- * the final thing I do is call .Sum() on this collection which return one double the sum of all the doubles,
- * this is the total.
- */
- double totalCost =
- (
- invoice_table.Rows
- .Where((row, index) => index > 0 && index < invoice_table.RowCount - 1)
- .Select(row => double.Parse(row.Cells[row.Cells.Count() - 1].Paragraphs[0].Text.Remove(0, 1)))
- ).Sum();
-
- // Insert the total calculated above using LINQ into the total Paragraph.
- total_paragraph.InsertText(string.Format("€{0}", totalCost), false);
-
- // Let the tables columns expand to fit its contents.
- invoice_table.AutoFit = AutoFit.Contents;
-
- // Center the Table
- invoice_table.Alignment = Alignment.center;
-
- // Return the invloce table now that it has been created.
- return invoice_table;
- }
-
- // You need to rewrite this function to grab data from your data source.
- private static DataTable GetDataFromDatabase()
- {
- DataTable table = new DataTable();
- table.Columns.AddRange(new DataColumn[] { new DataColumn("Description"), new DataColumn("Hours"), new DataColumn("Rate"), new DataColumn("Amount") });
-
- table.Rows.Add
- (
- "Install wooden doors (Kitchen, Sitting room, Dining room & Bedrooms)",
- "5",
- "€25",
- string.Format("€{0}", 5 * 25)
- );
-
- table.Rows.Add
- (
- "Fit stairs",
- "20",
- "€30",
- string.Format("€{0}", 20 * 30)
- );
-
- table.Rows.Add
- (
- "Replace Sitting room window",
- "6",
- "€50",
- string.Format("€{0}", 6 * 50)
- );
-
- table.Rows.Add
- (
- "Build garden shed",
- "10",
- "€10",
- string.Format("€{0}", 10 * 10)
- );
-
- table.Rows.Add
- (
- "Fit new lock on back door",
- "0.5",
- "€30",
- string.Format("€{0}", 0.5 * 30)
- );
-
- table.Rows.Add
- (
- "Tile Kitchen floor",
- "24",
- "€25",
- string.Format("€{0}", 24 * 25)
- );
-
- return table;
- }
-
- /// <summary>
- /// Creates a simple document with the text Hello World.
- /// </summary>
- static void HelloWorld()
- {
- Console.WriteLine("\tHelloWorld()");
-
- // Create a new document.
- using (DocX document = DocX.Create(@"docs\Hello World.docx"))
- {
- // Insert a Paragraph into this document.
- Paragraph p = document.InsertParagraph();
-
- // Append some text and add formatting.
- p.Append("Hello World!^011Hello World!")
- .Font(new FontFamily("Times New Roman"))
- .FontSize(32)
- .Color(Color.Blue)
- .Bold();
-
-
-
- // Save this document to disk.
- document.Save();
- Console.WriteLine("\tCreated: docs\\Hello World.docx\n");
- }
- }
-
- /// <summary>
- /// Loads a document 'Input.docx' and writes the text 'Hello World' into the first imbedded Image.
- /// This code creates the file 'Output.docx'.
- /// </summary>
- static void ProgrammaticallyManipulateImbeddedImage()
- {
- Console.WriteLine("\tProgrammaticallyManipulateImbeddedImage()");
- const string str = "Hello World";
-
- // Open the document Input.docx.
- using (DocX document = DocX.Load(@"Input.docx"))
- {
- // Make sure this document has at least one Image.
- if (document.Images.Count() > 0)
- {
- Novacode.Image img = document.Images[0];
-
- // Write "Hello World" into this Image.
- Bitmap b = new Bitmap(img.GetStream(FileMode.Open, FileAccess.ReadWrite));
-
- /*
- * Get the Graphics object for this Bitmap.
- * The Graphics object provides functions for drawing.
- */
- Graphics g = Graphics.FromImage(b);
-
- // Draw the string "Hello World".
- g.DrawString
- (
- str,
- new Font("Tahoma", 20),
- Brushes.Blue,
- new PointF(0, 0)
- );
-
- // Save this Bitmap back into the document using a Create\Write stream.
- b.Save(img.GetStream(FileMode.Create, FileAccess.Write), ImageFormat.Png);
- }
- else
- Console.WriteLine("The provided document contains no Images.");
-
- // Save this document as Output.docx.
- document.SaveAs(@"docs\Output.docx");
- Console.WriteLine("\tCreated: docs\\Output.docx\n");
- }
- }
-
- /// <summary>
- /// For each of the documents in the folder 'docs\',
- /// Replace the string a with the string b,
- /// Do this in Parrallel accross many CPU cores.
- /// </summary>
- static void ReplaceTextParallel()
- {
- Console.WriteLine("\tReplaceTextParallel()\n");
- const string a = "apple";
- const string b = "pear";
-
- // Directory containing many .docx documents.
- DirectoryInfo di = new DirectoryInfo(@"docs\");
-
- // Loop through each document in this specified direction.
- Parallel.ForEach
- (
- di.GetFiles(),
- currentFile =>
- {
- // Load the document.
- using (DocX document = DocX.Load(currentFile.FullName))
- {
- // Replace text in this document.
- document.ReplaceText(a, b);
-
- // Save changes made to this document.
- document.Save();
- } // Release this document from memory.
- }
- );
- Console.WriteLine("\tCreated: None\n");
- }
- }
- }
|