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


6.6.8 unset method

The unset functionality is used to unset a state event that has been set before. As a parameter it takes the event name. Example:

     function case_function() -- unset example
     	min.set("Event1",StateEvent);
     	min.unset("Event1");
     end