Next: , Previous: release method, Up: MIN2Lua API


6.6.7 set method

The set functionality is used to set an event. As a parameter it takes the name of the event to be set and as an optional second parameter the event type which can be StateEvent or IndicationEvent. By default the type is IndicationEvent.

Examples:

     function case_function() -- set example indication event
     	min.set("Event1");
     end
     
     function case_function() -- set example state event 2
     	min.set("Event1",StateEvent);
     end
     
     function case_function() -- set example indication event
     	min.set("Event1",IndicationEvent);
     end