com.aspose.words
Class BuildVersionInfo

java.lang.Object
    extended by com.aspose.words.BuildVersionInfo

public abstract class BuildVersionInfo 
extends java.lang.Object

Provides information about the current product name and version.

To learn more, visit the Generator or Producer Name Included in Output Documents documentation article.

Example:

Shows how to display information about your installed version of Aspose.Words.
System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));

Property Getters/Setters Summary
static java.lang.StringgetProduct()
           Gets the full name of the product.
static java.lang.StringgetVersion()
           Gets the product version.
 

Property Getters/Setters Detail

getProduct

public static java.lang.String getProduct()
Gets the full name of the product.

Example:

Shows how to display information about your installed version of Aspose.Words.
System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));

getVersion

public static java.lang.String getVersion()
Gets the product version.

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

Example:

Shows how to display information about your installed version of Aspose.Words.
System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));

See Also:
          Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
          Aspose.Words Support Forum - our preferred method of support.