version property

BuildVersionInfo.version property

Gets the product version.

@property
def version(self) -> str:
    ...

Remarks

The product version is in the “Major.Minor.Hotfix.0” format.

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