Description
The Version property returns the iSpring SDK version in the following format:
<major version>.<minor version>.<maintenance release>.<build number>
Type
string (read only)
Remarks
You can use the Version property to determine if the iSpring SDK of the required version is installed and the version-specific functionality is available.
Example
The following examples display the iSpring SDK version.
VB Sample
Private Sub iSpringSample()
Dim pc As New iSpring.PresentationConverter
MsgBox "iSpring SDK Version is " & pc.Version
End Sub
CODE
C# Sample
using System;
using iSpring;
class iSpringSample
{
static void Main(string[] args)
{
PresentationConverter pc = new PresentationConverter();
Console.WriteLine("iSpring SDK version is " + pc.Version);
}
}
CODE