StepChoice Constructor
- Last UpdatedNov 06, 2025
- 1 minute read
The StepChoice() method is the constructor for the StepChoice class. It sets all fields in the class.
'Declaration
Public Function New( _
ByVal choiceNo As Integer, _
ByVal choiceLabel As String _
)
'Usage
Dim choiceNo As Integer
Dim choiceLabel As String
Dim instance As New StepChoice(choiceNo, choiceLabel)
public StepChoice(
int choiceNo,
string choiceLabel
)
Parameters
- choiceNo
- Required. Holds the choice number.
- choiceLabel
- Required. Holds the choice label.