るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.076秒)

別のキーワード

  1. openssl public_key
  2. openssl public_key=
  3. _builtin public
  4. openssl public?
  5. object public_send

ライブラリ

クラス

検索結果

WIN32OLE#invoke(name, *args) -> object | nil (18126.0)

メソッド名を指定してオブジェクトのメソッドを呼び出します。

...'Excel.Application')
workbook = excel.workbooks.invoke(:Open, :FileName => 'c:\\users\\public\\test.xml',
:ReadOnly => true,
:Password => 'secret')
excel.invoke(:Quit)

このリストは、以下の記述と...
...同等です。

excel = WIN32OLE.new('Excel.Application')
workbook = excel.workbooks.Open(:FileName => 'c:\\users\\public\\test.xml',
:ReadOnly => true,
:Password => 'secret')
excel.Quit...