Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Explore precise word count statistics! Set C# API’s IncludeTextboxesFootnotesEndnotesInStat property. Check default settings and customize for accurate word counts.
IncludeTextboxesFootnotesEndnotesInStat
Added public property Document.IncludeTextboxesFootnotesEndnotesInStat to the Document class.
Document.IncludeTextboxesFootnotesEndnotesInStat
Document
Please use the following C# code snippet to include or exclude footnotes, endnotes, and textboxes from word count stats.
Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.Writeln("Lorem ipsum"); builder.InsertFootnote(FootnoteType.Footnote, "sit amet"); // Check the option is set to 'false' by default when a new document is created. Console.WriteLine("By default for new document this option is set to '{0}'", doc.IncludeTextboxesFootnotesEndnotesInStat); doc.UpdateWordCount(); Console.WriteLine("Words count without textboxes, footnotes and endnotes: {0}", doc.BuiltInDocumentProperties.Words); // Change option. doc.IncludeTextboxesFootnotesEndnotesInStat = true; doc.UpdateWordCount(); Console.WriteLine("Words count with textboxes, footnotes and endnotes: {0}", doc.BuiltInDocumentProperties.Words); /* This code produces the following output: By default for new document this option is set to 'False' Words count without textboxes, footnotes and endnotes: 2 Words count with textboxes, footnotes and endnotes: 4 */
Source*
MOBI
This release offers your .NET Apps to have a seamless Kindle® integration using C# API. Aspose.Words for .NET now supports MOBI (also called PRC, AZW) file format export. Optimize e-book integration with C# API.
Please use the following C# code to save a DOCX document to MOBI file format using API:
Document doc = new Document("in.docx"); doc.Save("out.mobi");
or
Document doc = new Document("in.docx"); HtmlSaveOptions options = new HtmlSaveOptions(SaveFormat.Mobi); doc.Save("out.mobi", options);
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for .NET 23.2 Release Notes.