method
generate_method_help
v1_9_1_378 -
Show latest stable
-
0 notes -
Class: WIN32COMGen
- 1_8_6_287 (0)
- 1_8_7_72 (0)
- 1_8_7_330 (0)
- 1_9_1_378 (0)
- 1_9_2_180 (0)
- 1_9_3_125
- 1_9_3_392
- 2_1_10
- 2_2_9
- 2_4_6
- 2_5_5
- 2_6_3
- What's this?
generate_method_help(method, type = nil)
public
Hide source
# File ext/win32ole/sample/olegen.rb, line 99 def generate_method_help(method, type = nil) str = " # " if type str += type else str += method.return_type end str += " #{method.name}" if method.event? str += " EVENT" str += " in #{method.event_interface}" end if method.helpstring && method.helpstring != "" str += "\n # " str += method.helpstring end args_help = generate_method_args_help(method) if args_help str += "\n" str += args_help end str end