Combination "ValueChange" in Tag Script
Posted: Wed Oct 10, 2012 4:39 am
Hi,
how can I combine following conditions, for better transparency
----------------------------------
void Station2_M700_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e)
{
ScriptModule1.Start();
}
void Station2_M710_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e)
{
ScriptModule1.Start();
}
----------------------------------
Like this ... ? ->
"Station2_M700_ValueChange or Station2_M710_ValueChange"
{
ScriptModule1.Start();
}
----------------------------------
Thanks for reply
Joe
how can I combine following conditions, for better transparency
----------------------------------
void Station2_M700_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e)
{
ScriptModule1.Start();
}
void Station2_M710_ValueChange(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.ValueChangedEventArgs e)
{
ScriptModule1.Start();
}
----------------------------------
Like this ... ? ->
"Station2_M700_ValueChange or Station2_M710_ValueChange"
{
ScriptModule1.Start();
}
----------------------------------
Thanks for reply
Joe