IniSwitch Runtime Properties

GotoNode

(Integer)

This property will transfer a call to another control. See GotoNode.

Result

(String)

The Result property contains the value found in the INI file.

EXAMPLES

To access the result:

VB

Dim Result As String

mystring = IniSw1.Result(channel)

C#

string result;

result = iniSwitch1.Result[e.channel];

To override the result:

VB

IniSw1.Result(channel) = "dddd" ' this is the result I really wanted

C#

iniSwitch1.Result[e.channel] = "dddd";// this is the result I really wanted

Read more about IniSwitch control.