Description
Returns the text contained in the node complete with all its tags and special characters.
Available in Ted and in Fred.
Syntax
dim strText as String = object.Text |
object
Required. Object name. Returned by the GetRootNode, GetCurNode, GetTxtNode, GetParent, GetChild functions of the object, returned by Ted.GetActiveArticle.
Example
The below script displays the text (with tags) of node:
If Ted.HasActiveArticle Then
dim objA = Ted.GetActiveArticle
dim objN = objA.GetCurNode
MsgBox (objN.TedText)
End If
Context
Node object
See also
Text Property for text without GNML tags.