ExplodeText

Explodes a text object into outline curves. The exploded curves will be added to the document.

Syntax

rhinoscriptsyntax.ExplodeText(text_id, delete=False)

rhinoscript.hatch.ExplodeText(text_id, delete=False)

Parameters

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

Returns

List

A list of Guids identifying the newly created curves if successful.

None

On error.

Example

import rhinoscriptsyntax as rs

text = rs.AddText("abcd", rs.WorldXYPlane())

rs.ExplodeText(text, True)

Also See

IsHatch

HatchPattern

HatchRotation

HatchScale