java.lang.Object
com.aspose.words.BuildVersionInfo
public abstract class BuildVersionInfo
To learn more, visit the Generator or Producer Name Included in Output Documents documentation article. Example:
System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));
| Property Getters/Setters Summary | ||
|---|---|---|
static java.lang.String | getProduct() | |
| Gets the full name of the product. | ||
static java.lang.String | getVersion() | |
| Gets the product version. | ||
| Property Getters/Setters Detail |
|---|
getProduct | |
public static java.lang.String getProduct() | |
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() | |
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()));