Methods
- M
- N
- O
- P
Attributes
| [R] | loop |
Class Public methods
new()
Link
Source: show
# File ext/win32ole/sample/ienavi2.rb, line 5 def initialize @urls = [] @loop = true end
Instance Public methods
method_missing(event, *args)
Link
Source: show
# File ext/win32ole/sample/ienavi2.rb, line 9 def method_missing(event, *args) case event when "BeforeNavigate2" puts "Now Navigate #{args[1]}..." end end
Source: show