allc(condition)
 
Description
 return true if all child items meet the condition.
Example
 
allc(substr(tv(),1,2)=="M ")
will return a true value only if the item text for all child items start with "M "
TV() returns the item text of the child item to the substr() function.
Related Rules
 
alld(), 
allp(), 
anyc(), 
anycf(), 
anyd(), 
anyf(), 
anyp()
Rules