Returns the aliases of the models used by the worksession, including the active model which might not be saved.
Rhino.WorkSessionModelAliases ()
None.
Array |
An array of strings identifying the aliases of the models used by the worksession if successful. |
Null |
If not successful, or on error. |
Dim arrAliases, strAlias
arrAliases = Rhino.WorkSessionModelAliases
If IsArray(arrAliases) Then
For Each strAlias In arrAliases
Rhino.Print strAlias
Next
End If