Wiki

Changes between Version 2 and Version 3 of Raise

Show
Ignore:
Timestamp:
11/22/10 20:17:15 (14 years ago)
Author:
todd.a
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Raise

    v2 v3  
    2424as args to the raise call. 
    2525{{{ 
     26#!cobra 
    2627sig NoArgEventHandler                    # no parameters 
    2728event notifyEvent as NoArgEventHandler   # is public 
     
    3233== Examples == 
    3334{{{ 
     35#!cobra 
    3436use System.Windows.Forms 
    3537 
     
    5355convenience method to raise the event, event handlers/listeners 
    5456{{{ 
     57#!cobra 
    5558 
    5659# EventArgs subclass to pass additional info in args 
     
    109112No Arg event, No args passed to raise. 
    110113{{{ 
     114#!cobra 
    111115# delegate with no args for notifyActionEvent  <eventName>EventHandler 
    112116sig NoArgEventHandler