The Version
public class VersionInfo
Introduced: X11.
The following code snippet displays how to use the TXText
TXTextControl.VersionInfo currentVersionInfo = textControl1.GetVersionInfo(); // the TXTextControl.VersionInfo class is used right here
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());
Property | Description |
---|---|
Major | Gets the major version number. |
Minor | Gets the minor version number. |
Product |
Gets the installed product level. |
Service |
Gets the number of the installed service pack. |