AddTextDot

Adds an annotation text dot to the document.

Syntax

rhinoscriptsyntax.AddTextDot (text, point)

rhinoscript.geometry.AddTextDot (text, point)

Parameters

text

Required.  String.  A character or text string.

point

Required.  list of 3 numbers or Point3d.  A 3-D point identifying the origin point.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

rs.AddTextDot("howdy",(1,2,3))

Also See

IsTextDot