ExeServiceRelease

Returns the service release version of this Rhino executable (e.g. 0, 1, 2, ...).  

Syntax

rhinoscriptsyntax.ExeServiceRelease ()

rhinoscript.application.ExeServiceRelease ()

Parameters

None.

Returns

Number

The Rhino service release 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

ExeVersion

InstallType

NodeType

SdkServiceRelease

SdkVersion

SerialNumber