Question_Leave
Question_Leave is called after branching from the question.
Syntax
Question_Leave
Returns
Not applicable
Usage
Question_Leave is called on the question after branching has been determined and all the built-in validations have been performed.
Siebel VB Example
Sub Question_Leave
Dim ProductDesc As String
ProductDesc = Page.GetQuestion("Choose Product").GetCurrentValue
Script.SetUserParameter "ProductDesc", ProductDesc
End Sub