るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.238秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:l[x] > バージョン:2.2.0[x] > クエリ:d[x] > クエリ:r[x] > クエリ:to[x] > クエリ:helpstring[x]

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rational to_d
  4. string to_d
  5. ssl op_tls_d5_bug

ライブラリ

クラス

検索結果

WIN32OLE_METHOD#helpstring -> String | nil (100261.0)

メソッドのヘルプ文字列を取得します。

メソッドのヘルプ文字列を取得します。

helpstringは、IDEがメソッドのバルーンヘルプを表示するような場合に利用可
能な、1行程度でメソッドを説明する文字列です。

@return ヘルプ文字列を返します。未定義ならばnilを返します。

tobj = WIN32OLE_TYPE.new('Microsoft Internet Controls', 'IWebBrowser')
method = WIN32OLE_METHOD.new(tobj, 'Navigate')
puts method.helpstring # => Navigates to a URL o...