Returns the name of the last executed command.
rhinoscriptsyntax.LastCommandName()
rhinoscript.application.LastCommandName()
None.
String |
The name of the last executed command. |
import rhinoscriptsyntax as rs
rs.Command( "Line" )
print "The last command was the", rs.LastCommandName(), "command."