Returns or modifies the text string of an annotation text dot object. Annotation dots can be created using Rhino's Dot command.
Rhino.TextDotText (strObject [, strText])
strObject |
Required. String. The identifier of the object. |
strText |
Optional. String. A new character or text string. |
String |
If a new text string is not specified, the current string value if successful. |
String |
If a new text string is specified, the previous string value if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select text dot")
If Rhino.IsTextDot(strObject) Then
Rhino.TextDotText strObject, "Rhino"
End If