IsTextDot

Verifies an object is a text dot object.

Syntax

rhinoscriptsyntax.IsTextDot (object_id)

rhinoscript.geometry.IsTextDot (object_id)

Parameters

object_id

Required. String or Guid. The object's identifier.

Returns

Boolean

True if successful, otherwise False.

Example

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."

Also See

AddTextDot