Description
Returns true if the article has not yet been saved in the database.
Available in Ted and Fred.
Syntax
bValue = object.IsNew |
object
Required. Object name. Returned by Ted.GetActiveArticle.
Example
This script displays the database status of the article.
If Ted.HasActiveArticle Then
Dim objArticle = Ted.GetActiveArticle
Dim bStat As Boolean = objArticle.IsNew
MsgBox(bStat) ' displays FALSE if articles was not checked out
End If
Context
Article object
See also
IsChanged, IsChecked, ToggleCheck