るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.013秒)
トップページ > クエリ:exit[x] > クエリ:progids[x]

別のキーワード

  1. _builtin exit
  2. monitor exit
  3. thread exit
  4. irb irb_exit
  5. _builtin exit!

ライブラリ

クラス

検索結果

WIN32OLE_TYPE.progids -> [String] (18113.0)

システムに登録されているすべてのコンポーネントクラスのPROGIDを取得します。

...excel = nil
WIN32OLE_TYPE.progids.each do |pg|
if pg =~ /excel\.application/i # ExcelのPROGIDをバージョン無視で取り出す
excel = WIN32OLE.new(pg)
break
end
end
unless excel
$stderr.puts "Excel isn't installed"
exit
(1)
end
excel.visible = true...