Find GridDesktop Version at Runtime
Contents
[
Hide
]
Possible Usage Scenarios
Sometime, it is important to find the GridDesktop version at runtime. For example, you want to make sure that you are using the correct version or you are debugging your application and you want to know the version of GridDesktop currently in use. GridDesktop provides Aspose.Cells.GridDesktop.GridDesktop.GetVersion() method which returns the GridDesktop version at runtime.
Find GridDesktop Version at Runtime
The following sample code finds the GridDesktop version at runtime. The screenshot shows the result of the execution of this sample code for a reference.
Sample Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Get the version number of GridDesktop | |
string version = Aspose.Cells.GridDesktop.GridDesktop.GetVersion(); | |
//Show the version number in message box | |
MessageBox.Show("GridDesktop Version: " + version, "GridDesktop Version"); |