hostMinorVersion()

Synopsis

Returns a string describing the "minor version" of the "host" environment in which the Intent Kernel is embedded. For Inventor host, returns the Inventor minor version from the SoftwareVersion object. For other hosts, it will return a different string , indicating the minor version of the host environment.

If you create your own host, you have to specify the "minor version" during host initialization

Syntax

hostMinorVersion ( ) As String 

Example 1

Inventor host minor version (output may vary)
Intent >hostMinorVersion()
--> "0" 

Example 2

Host information (output may vary)
Intent >hostName() & " " & hostMajorVersion() & "." & hostMinorVersion()
--> "MinHost 5.0"