Returns the paths to the models used by the worksession.
Rhino.WorkSessionModelNames ()
None.
Array |
An array of strings identifying the paths to the models used by the worksession if successful. |
Null |
If not successful, or on error. |
Dim arrNames, strName
arrNames = Rhino.WorkSessionModelNames
If IsArray(arrNames) Then
For Each strName In arrNames
Rhino.Print strName
Next
End If