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 Python via .NET 24.1.0 macOS 10.14 (Mojave) x86_64 (Intel 64-bit)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 73.4MB
  • Date Added:
  • 18/1/2024

Description

It contains Aspose.Words for Python via .NET 24.1.0, macOS 10.14 (Mojave) x86_64 (Intel 64-bit) release.

File Details

Textbox OLE Control Enhancement

  • Capability added to modify text of the TextBox OLE control.
  • Introduction of the TextBoxControl class with a new text public property.

The following Python code demonstrates the ability to manipulate and validate the content of a text box control using Aspose.Words for Python via .NET API:

from aspose.words import Document, NodeType

doc = Document("Textbox control.docm")

shape = doc.get_child(NodeType.SHAPE, 0, True).as_shape()

textBoxControl = shape.ole_format.ole_control.as_forms2_ole_control().as_text_box_control()
self.assertEqual("Aspose.Words test", textBoxControl.text)

textBoxControl.text = "Updated text"
self.assertEqual("Updated text", textBoxControl.text)

Source

Stroke Colors Management

  • New public properties (fore_theme_color, back_theme_color, fore_tint_and_shade, and back_tint_and_shade) added to the Stroke class for managing stroke colors.

The following Python code sample uses Aspose API that creates a Word document, inserts a text box, and sets its outline color using a predefined theme color with an optional tint and shade effect. The resulting document is then saved to a file.

from aspose.words import Document, DocumentBuilder
from aspose.words.drawing import ShapeType
from aspose.words.themes import ThemeColor

doc = Document()
builder = DocumentBuilder(doc)
shape = builder.insert_shape(ShapeType.TEXT_BOX, 100, 40)
stroke = shape.stroke
stroke.fore_theme_color = ThemeColor.DARK1
stroke.fore_tint_and_shade = 0.5

doc.save("Shape.StrokeForeThemeColors.docx")

Source

HtmlSaveOptions List Labels Behavior Change

The behavior of HtmlSaveOptions.ExportListLabels save option has been modified.

Previous Behavior

When using ExportListLabels.BY_HTML_TAGS, some lists were exported as inline text using ‘p’ tags.

Current Behavior

When ExportListLabels.BY_HTML_TAGS is specified, all lists are now exported as HTML native elements using ‘ul’, ‘ol’, and ’li’ tags.

Effects on Heading Styles

Lists with Heading styles were previously exported as inline text using ‘h1’ to ‘h6’ tags. Now, they are exported as HTML native elements using ‘ul’, ‘ol’, and ’li’ tags, and their styles won’t be preserved after DOCX->HTML->DOCX round-trip.

Effects on Lists with Delete Revision

Lists with delete revision were previously exported as inline text using ‘p’ tags. Now, they are exported as HTML native elements using ‘ul’, ‘ol’, and ’li’ tags, with a potential decrease in the quality of such lists.

Export to MHTML

When exporting a document to MHTML, strikethrough and underline formatting is no longer applied to list markers. For developers needing specific control, try using ExportListLabels.AUTO instead of ExportListLabels.BY_HTML_TAGS for HtmlSaveOptions.export_list_labels save option. It behaves like the previous version.

Bibliography Sources Public API

  • Introduction of the bibliography property in the Document class.
  • New classes (Bibliography, Source, ContributorCollection, Contributor, Corporate, PersonCollection, and Person) added.

The following Python code sample uses API to check the total number of sources in the bibliography (DOCX file), properties of the first source (such as its title), and properties of the authors of the first source. The testing is done using the self.assertEqual method to ensure that the expected values match the actual values obtained from the document.

from aspose.words import Document

document = Document("Bibliography sources.docx")

bibliography = document.bibliography
self.assertEqual(12, len(bibliography.sources))

source = bibliography.sources[0]
self.assertEqual("Book 0 (No LCID)", source.title)

authors = source.contributors.author.as_person_collection()
self.assertEqual(2, authors.count)

person = authors[0]
self.assertEqual("Roxanne", person.first)
self.assertEqual("Brielle", person.middle)
self.assertEqual("Tejeda", person.last)

Source

MarkdownSaveOptions Underline Formatting

  • Added the export_underline_formatting property to MarkdownSaveOptions.
  • Use case example included for exporting underline formatting into Markdown.

The following Python code utilizes the Aspose.Words library to create a new Word document, insert text with single underline formatting, and then save the document in Markdown format with specific save options.

from aspose.words import Document, DocumentBuilder, Underline
from aspose.words.saving import MarkdownSaveOptions

doc = Document()
builder = DocumentBuilder(doc)

builder.underline = Underline.SINGLE
builder.write("Lorem ipsum. Dolor sit amet.")

save_options = MarkdownSaveOptions()
save_options.export_underline_formatting = True
doc.save("MarkdownSaveOptions.ExportUnderlineFormatting.md", save_options)

Source

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for Python via .NET 24.1 Release Notes.

 English