ExeVersion

Returns the major version number of this Rhino executable (e.g. 5, 6, ...).

Syntax

rhinoscriptsyntax.ExeVersion()

rhinoscript.application.ExeVersion()

Parameters

None.

Returns

Number

The Rhino version number if successful.

Example

import rhinoscriptsyntax as rs

print "Build date:", rs.BuildDate()

print "SDK Version:", rs.SdkVersion()

print "SDK Service Release:", rs.SdkServiceRelease()

print "Executable Version:", rs.ExeVersion()

print "Executable Service Release:", rs.ExeServiceRelease()

print "Serial Number:", rs.SerialNumber()

print "Node Type:", rs.NodeType()

print "Install Type:", rs.InstallType()

Also See

BuildDate

ExeServiceRelease

InstallType

NodeType

SdkServiceRelease

SdkVersion

SerialNumber