Browse our Products

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.

 

Aspose.Words for .NET 22.10

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 83.6MB
  • Date Added:
  • 6/10/2022

Description

It contains Aspose.Words for .NET 22.10 MSI installer.

File Details

Text Indentation in blockquote Tags

This API version correctly renders the text format indentation against the HTML blockquote tags.

Move DocumentBuilder Cursor inside SDT

Ability to move the DocumentBuilder cursor inside of a structured document tag (SDT).

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");

Find / Replace Text while Ignoring SDT

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.

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.

 English