search/mag_sel search/close
Aspose::Words::BuildVersionInfo Class Reference

Provides information about the current product name and 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;

#include <Aspose.Words.Cpp/BuildVersionInfo.h>

Public Member Functions

 BuildVersionInfo ()=delete
 

Static Public Member Functions

static String get_Product ()
 Gets the full name of the product. More...
 
static String get_Version ()
 Gets the product version. More...
 

Constructor & Destructor Documentation

◆ BuildVersionInfo()

Aspose::Words::BuildVersionInfo::BuildVersionInfo ( )
delete

Member Function Documentation

◆ get_Product()

static System::String Aspose::Words::BuildVersionInfo::get_Product ( )
static

Gets the full name of the product.

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;

◆ get_Version()

static System::String Aspose::Words::BuildVersionInfo::get_Version ( )
static

Gets the product version.

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

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;