Aspose::Words::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.

class BuildVersionInfo

Methods

MethodDescription
BuildVersionInfo()
static get_Product()Gets the full name of the product.
static get_Version()Gets the product version.

Examples

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

std::cout << "I am currently using " << BuildVersionInfo::get_Product() << ", version number " << BuildVersionInfo::get_Version() << "!" << std::endl;

See Also