rhinoscriptsyntax.ExplodeText(text_id, delete=False)
rhinoscript.hatch.ExplodeText(text_id, delete=False)
text_id |
Required. String or Guid. The identifier of an object. |
delete |
Optional. Boolean. Delete the text object. The default is to not delete the text object (False). |
List |
A list of Guids identifying the newly created curves if successful. |
None |
On error. |
import rhinoscriptsyntax as rs
text = rs.AddText("abcd", rs.WorldXYPlane())
rs.ExplodeText(text, True)