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.
blockquote
This API version correctly renders the text format indentation against the HTML blockquote tags.
Ability to move the DocumentBuilder cursor inside of a structured document tag (SDT).
DocumentBuilder
The following C# sample code demonstrates how to fetch the currently selected SDT via API:
Document doc = new Document("input.docx"); DocumentBuilder builder = new DocumentBuilder(doc); // Move to the end of the second structured document tag. builder.MoveToStructuredDocumentTag(1, -1); builder.Write(" Text at end of structured document tag."); // Get currently selected structured document tag. builder.CurrentStructuredDocumentTag.Color = Color.Green; doc.Save("output.docx");
The FindReplaceOptions class has been enhanced with a new public property (IgnoreStructuredDocumentTags). This allows you to ignore the structured document tags while running a text find and replace operation.
FindReplaceOptions
IgnoreStructuredDocumentTags
The following C# code demonstrates how it is done via API:
Document doc = new Document("input.docx"); // Set options to ignore StructuredDocumentTags. FindReplaceOptions options = new FindReplaceOptions() { IgnoreStructuredDocumentTags = true }; doc.Range.Replace("searchText", "replacement", options);
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for .NET 22.10 Release Notes.