BenSelect Documentation
Answers Property
See Also  Example Send Feedback
Selerix.ETIExtension.Report Namespace > ANSI834Event Class : Answers Property
Collection of answers indexed by question name.

Syntax

JScript 
public override function get Answers : SafeDictionary

Example

JScriptCopy Code
// Check answer to question labeled G357_AtWork. If False, benefit is simplified
// issue. If unanswered or True, benefit is guraranteed issue.
if (Event.Answers["G357_AtWork"] != null && Event.Answers["G357_AtWork"] == 'False')
    Event.Value = "Simplified Issue";
else
    Event.Value = "Guaranteed Issue";

Remarks

This collection will only be populated if there is at least one question used as a column in the report.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2024 All Rights Reserved.