RuleChildName
The RuleChildName property sets or gets the name of a rule that is referenced by an index.
Description
Important: VBScript
only. Extended properties are not supported through the C# .NET Interop
interface. Instead, use set_RuleChildName or get_RuleChildName.
For more information,
see get_RuleChildName.Syntax
- VBScript
oSNO.RuleChildName(nIndex as Long) as String
Arguments
- nIndex
- The index of the rule, where 0 is the first rule.
Type
Read and writeExample
- VBScript
Dim objDoc Set objDoc = MQDCO.GetNodebyName(1, "Doc") Call objDoc.AddRule (2,"Page1",1,1,3) msgbox "The name of Rule 1 is " & objDoc.RuleChildName(0)