るりまサーチ

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

別のキーワード

  1. win32ole helpcontext
  2. win32ole_type helpcontext
  3. win32ole_method helpcontext
  4. helpcontext win32ole
  5. helpcontext win32ole_type

ライブラリ

クラス

検索結果

WIN32OLE_TYPE#helpfile -> String | nil (18119.0)

オブジェクトに関連付けられたヘルプファイルのフルパス名。

...ます。

tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Worksheet')
puts tobj.helpfile # => C:\...\VBAXL9.CHM
WIN32OLE.ole_show_help tobj.helpfile, tobj.helpcontext
# 注)WIN32OLE.ole_show_help(tobj) の呼び出しが望ましい

当メソッドがフルパス名...

WIN32OLE.ole_show_help(obj, helpcontext = nil) -> () (119.0)

WIN32OLEオブジェクトのヘルプファイルを表示します。

..._METHODオ
ブジェクト。直接ヘルプファイルのフルパス名を指定することも可
能です。

@param helpcontext obj引数にWIN32OLE_TYPEオブジェクトまたは
WIN32OLE_METHODオブジェクトを指定した場合は、こ...
...プファイルを持たない場合
(no helpfile of `オブジェクト名') や、ヘルプファイル
がインストールされていない場合 (failed to open
help file
`ファイル名') に通知します。

excel = WIN32OLE....
...new('Excel.Application')
typeobj = excel.ole_obj_help
WIN32OLE.ole_show_help(typeobj) if typeobj.helpfile...