Returns an object of the type VersionInfo, which provides information about the installed TX Text Control version.

Introduced: X11.

GetVersionInfo()

public VersionInfo GetVersionInfo();

Return Value

The return value is a VersionInfo object.

Examples

The following code snippet explains how to use the TXTextControl.TextControl.GetVersionInfo method to get the version info of the current TXTextControl version.

TXTextControl.VersionInfo currentVersionInfo = textControl1.GetVersionInfo();

int currentVersionInfo_Major = currentVersionInfo.Major;
int currentVersionInfo_Minor = currentVersionInfo.Minor;
TXTextControl.VersionInfo.ProductLevel currentVersionInfo_ProductLevel = currentVersionInfo.Level;
int currentVersionInfo_ServicePack = currentVersionInfo.ServicePack;

System.Windows.Forms.MessageBox.Show( "The current TX TextControl Major Version is: " + currentVersionInfo_Major.ToString() + "\r\n"
                                    + "The current TX TextControl Minor Version is: " + currentVersionInfo_Minor.ToString() + "\r\n"
                                    + "The current TX TextControl Product Level is: " + currentVersionInfo_ProductLevel.ToString() + "\r\n"
                                    + "The current TX TextControl Service Pack is: " + currentVersionInfo_ServicePack.ToString());