Changes between Version 2 and Version 3 of Raise
- Timestamp:
- 11/22/10 20:17:15 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Raise
v2 v3 24 24 as args to the raise call. 25 25 {{{ 26 #!cobra 26 27 sig NoArgEventHandler # no parameters 27 28 event notifyEvent as NoArgEventHandler # is public … … 32 33 == Examples == 33 34 {{{ 35 #!cobra 34 36 use System.Windows.Forms 35 37 … … 53 55 convenience method to raise the event, event handlers/listeners 54 56 {{{ 57 #!cobra 55 58 56 59 # EventArgs subclass to pass additional info in args … … 109 112 No Arg event, No args passed to raise. 110 113 {{{ 114 #!cobra 111 115 # delegate with no args for notifyActionEvent <eventName>EventHandler 112 116 sig NoArgEventHandler