698件ヒット
[201-300件を表示]
(0.103秒)
ライブラリ
- ビルトイン (384)
- bigdecimal (12)
- csv (12)
-
irb
/ context (24) -
irb
/ ext / math-mode (8) -
irb
/ inspector (36) - openssl (36)
- shell (6)
-
shell
/ filter (6) - socket (12)
- thwait (18)
- win32ole (24)
- zlib (12)
クラス
-
ARGF
. class (24) - Addrinfo (12)
- BigDecimal (12)
-
CSV
:: Table (12) - Complex (12)
- FalseClass (24)
- Float (24)
- Hash (12)
-
IRB
:: Context (32) -
IRB
:: Inspector (24) - Module (51)
- Object (12)
-
OpenSSL
:: HMAC (36) - Rational (24)
- Shell (6)
-
Shell
:: Filter (6) - Symbol (12)
- Thread (12)
-
Thread
:: Backtrace :: Location (12) - ThreadsWait (18)
- Time (9)
- TrueClass (12)
- UnboundMethod (12)
-
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ TYPE (12) -
Zlib
:: GzipFile :: Error (12)
キーワード
- Inspector (12)
- [] (12)
- ` (12)
- abort (24)
-
all
_ waits (18) -
bind
_ call (12) -
const
_ added (3) -
const
_ missing (12) - debug= (6)
-
def
_ inspector (12) -
default
_ proc (12) - exit (12)
- format (12)
- handler= (12)
- hexdigest (12)
-
initialize
_ copy (12) - inspect? (12)
-
inspect
_ i (12) -
inspect
_ mode (12) -
inspect
_ obj (12) -
inspect
_ value (12) - irb (12)
-
irb
/ completion (12) - math? (4)
-
math
_ mode (4) -
method
_ inspect (12) - name (12)
- new (21)
- p (12)
-
rb
_ inspect (12) -
rb
_ obj _ inspect (12) -
rb
_ thread _ inspect (12) -
ruby 1
. 8 . 2 feature (12) - sprintf (12)
-
to
_ s (72) -
trace
_ var (36) -
untrace
_ var (12)
検索結果
先頭5件
-
WIN32OLE
_ EVENT # handler=(obj) -> () (9106.0) -
イベント処理を実行するオブジェクトを登録します。
...るにはnilを指定します。
class IeHandler
def initialize
@completed = false
end
attr_reader :completed
def onDocumentComplete(disp, uri)
disp.document.getElementsByTagName('a').each do |e|
puts "#{e.innerHTML}=#{e.href}"
end
@completed = tru......#{args.inspect}"
end
end
ie = WIN32OLE.new('InternetExplorer.Application.1')
event = WIN32OLE_EVENT.new(ie, 'DWebBrowserEvents2')
event.handler = IeHandler.new
ie.Navigate2 'http://www.ruby-lang.org/ja/'
loop do
break if event.handler.completed
WIN32OLE_EVENT.message_loop......end
ie.Quit
WIN32OLE_EVENT#on_eventなどの呼び出しでブロックが登録されている場
合、そちらが優先されます。... -
IRB
. Inspector(inspect , init = nil) -> IRB :: Inspector (6413.0) -
IRB::Inspector オブジェクトを生成します。
...IRB::Inspector オブジェクトを生成します。
@param inspect 実行結果の出力のための手続きオブジェクトを指定します。
@param init inspect_mode の初期化のための手続きオブジェクトを指定します。
あらかじめ require が必要... -
static VALUE inspect
_ obj(VALUE obj , VALUE str) (6400.0) -
-
static int inspect
_ i(ID id , VALUE value , VALUE str) (6400.0) -
-
VALUE rb
_ inspect(VALUE obj) (6316.0) -
obj.inspect の実体。
...obj.inspect の実体。... -
static VALUE rb
_ obj _ inspect(VALUE obj) (6316.0) -
Object#inspect の実体です。
...Object#inspect の実体です。... -
static VALUE method
_ inspect(VALUE method) (6300.0) -
-
static VALUE rb
_ thread _ inspect(VALUE thread) (6300.0) -
-
IRB
:: Context # inspect? -> bool (6229.0) -
IRB::Context#inspect_mode が有効かどうかを返します。
...IRB::Context#inspect_mode が有効かどうかを返します。
@return 出力結果に to_s したものを表示する場合は false を返します。それ
以外の場合は true を返します。
@see IRB::Context#inspect_mode, IRB::Context#inspect_mode=...