Description
Returns true if the node belongs to a text.
Available in Ted and in Fred.
Syntax
dim bValue as Boolean = object.HasTxt |
object
Required. Object name. Returned by the GetRootNode, GetCurNode, GetTxtNode, GetParent, GetChild functions of the object, returned by Ted.GetActiveArticle.
Example
If Ted.HasActiveArticle Then
dim objA = Ted.GetActiveArticle
dim objN = objA.GetCurNode
If objN.HasTxt Then
MsgBox ("Belongs to a text")
End If
End If
Context
Node object
See also