Returns or modifies the height of an annotation text dot object.
Rhino.TextDotHeight (strObject [, intHeight])
strObject |
Required. String. The identifier of the object. |
intHeight |
Optional. Number. The new text height. If omitted, the current text height is returned. |
String |
If a height is not specified, the current text height if successful. |
String |
If a height is specified, the previous text height if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select text dot")
If Rhino.IsTextDot(strObject) Then
Rhino.TextDotHeight strObject, 20
End If