Initializes a new instance of the ConditionalInstruction class.

ConditionalInstruction()

public ConditionalInstruction();
Public Sub New()

Instruction(String, Condition[], Instruction[])

public Instruction(string name, Condition[] conditions, Instruction[] instructions);
Public Sub New(ByVal name As String, ByVal conditions As Condition(), ByVal instructions As Instruction())

Parameters

Parameter Description
name Specifies the name of the conditional instruction. If the value is null or an empty string, a System.ArgumentException is thrown.
conditions Specifies the conditions of the conditional instruction. If the value is null, an empty array of conditions or at least one of the array elements is null, a System.ArgumentException is thrown.
instructions Specifies the instructions of the conditional instruction. If the value is null, an empty array of instructions, at least one of the array elements is null or the array contains an Instruction element, where its InstructionType property value is already set by another Instruction array element for the same FormField, a System.ArgumentException is thrown.