Verifies an object is a text dot object.
rhinoscriptsyntax.IsTextDot (object_id)
rhinoscript.geometry.IsTextDot (object_id)
object_id |
Required. String or Guid. The object's identifier. |
Boolean |
True if successful, otherwise False. |
import rhinoscriptsyntax as rs
id = rs.GetObject("Select a text dot object")
if rs.IsTextDot(id):
print "The object is a text dot object."
else:
print "The object is not a text dot object."