java.lang.Objectcom.aspose.words.BuildVersionInfo
public abstract class BuildVersionInfo
Example:
System.out.println("I am currently using %(BuildVersionInfo.Product), version number %(BuildVersionInfo.Version)!");
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 use BuildVersionInfo to display version information about this product.System.out.println("I am currently using %(BuildVersionInfo.Product), version number %(BuildVersionInfo.Version)!");
getVersion | |
public static java.lang.String getVersion() |
The product version is in the "Major.Minor.Hotfix.0" format.
Example:
Shows how to use BuildVersionInfo to display version information about this product.System.out.println("I am currently using %(BuildVersionInfo.Product), version number %(BuildVersionInfo.Version)!");