Class FWParameterList
Last edit by:
Walter Davis
31 Jul, 2009
Pages in this section:
- A Hello World tutorial
- Action Elements
- Class FWAction
- Class FWActionList
- Class FWAttribute
- Class FWColor
- Class FWLinkParameter
- Class FWListData
- Class FWOSAInterpreter
- Class FWOutput
- Class FWPage
- Class FWParameter
- Class FWParameterList
- Class FWTag
- Files and Freeway Actions
- General Properties and User Methods
- Organisation of Classes
- Specific Properties and User Methods
- Weaver
This defines a list of FWParameters.
Example:
Get the Boolean value of the parameter “myParam”.
var isOn = fwParameters["myParam"].fwBoolValue;
or
var isOn = fwParameters.myParam.fwBoolValue;
Example:
Get the Boolean value of the first parameter.
var isOn = fwParameters[0].fwBoolValue;
Example:
Get the Boolean value of the last parameter.
var isOn = fwParameters[fwParameters.fwLength - 1].fwBoolValue;
