IsISISAvailable example for Visual Basic
'The following example tests to see if ISIS is available. A message is output with the result.
If (LEADRasterISIS1.IsISISAvailable = False) Then
MsgBox "ISIS Support not installed!"
Else
MsgBox "ISIS is installed!"
End If