SdkVersion

Returns the version of the Rhino SDK supported by the running version of Rhino.  Rhino SDK versions are 9 digit numbers in the form of YYYYMMDDn.

Syntax

rhinoscriptsyntax.SdkVersion()

rhinoscript.application.SdkVersion()

Parameters

None.

Returns

Number

The supported Rhino SDK version number if successful.

Example

import rhinoscriptsyntax as rs

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

Also See