BuildVersionInfo class

BuildVersionInfo class

Provides information about the current product name and version. To learn more, visit the Generator or Producer Name Included in Output Documents documentation article.

Properties

Name Description
product Gets the full name of the product.
version Gets the product version.

Examples

Shows how to display information about your installed version of Aspose.Words.

print(f"I am currently using {aw.BuildVersionInfo.product}, version number {aw.BuildVersionInfo.version}!")

See Also