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