384件ヒット
  
    
      [101-200件を表示]
    
  
    (0.760秒)
  
  
    トップページ >  :Object#method
:Object#method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :singleton_methods
:singleton_methods![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :coverage
:coverage![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :instance_method
:instance_method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :BasicObject
:BasicObject![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :helpfile
:helpfile![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :define_method
:define_method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :dig
:dig![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :win32ole
:win32ole![条件を削除 [x]](/images/drop-condition-icon.png) 
  
 :Object#method
:Object#method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :singleton_methods
:singleton_methods![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :coverage
:coverage![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :instance_method
:instance_method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :BasicObject
:BasicObject![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :helpfile
:helpfile![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :define_method
:define_method![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :dig
:dig![条件を削除 [x]](/images/drop-condition-icon.png) >
 >  :win32ole
:win32ole![条件を削除 [x]](/images/drop-condition-icon.png) 
  種類
- インスタンスメソッド (348)
- クラス (24)
- 特異メソッド (12)
クラス
- WIN32OLE (36)
- 
        WIN32OLE_ METHOD (216) 
- 
        WIN32OLE_ PARAM (84) 
- 
        WIN32OLE_ TYPE (24) 
キーワード
- 
        WIN32OLE_ PARAM (12) 
- 
        WIN32OLE_ VARIABLE (12) 
- 
        _ getproperty (12) 
- 
        _ invoke (12) 
- default (12)
- 
        default_ event _ sources (12) 
- dispid (12)
- event? (12)
- 
        event_ interface (12) 
- helpcontext (12)
- input? (12)
- invkind (12)
- 
        invoke_ kind (12) 
- 
        method_ missing (12) 
- name (24)
- new (12)
- 
        offset_ vtbl (12) 
- 
        ole_ methods (12) 
- 
        ole_ type (12) 
- 
        ole_ type _ detail (12) 
- optional? (12)
- params (12)
- 
        return_ type (12) 
- 
        return_ type _ detail (12) 
- 
        return_ vtype (12) 
- 
        size_ opt _ params (12) 
- 
        size_ params (12) 
- 
        to_ s (24) 
- visible? (12)
検索結果
先頭5件
- 
      WIN32OLE_ METHOD # event? -> bool (3026.0) 
- 
      
      
      メソッドがイベントかどうかを取得します。 ...を受けるために実装するメソッドです。
 @return メソッドがイベントであれば真。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbook')
 method = WIN32OLE_METHOD.new(tobj, 'SheetActivate')
 puts method.event? # => true
 @see WIN32OLE_EVENT...
- 
      WIN32OLE_ METHOD # event _ interface -> String | nil (3026.0) 
- 
      
      
      メソッドがイベントの場合、イベントのインターフェイス名を取得します。 ...ベントのインターフェイス名を返し
 ます。イベントでなければnilを返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbook')
 method = WIN32OLE_METHOD.new(tobj, 'SheetActivate')
 puts method.event_interface # => WorkbookEvents...
- 
      WIN32OLE_ METHOD # invkind -> Integer (3026.0) 
- 
      
      
      メソッドの種類を示すINVOKEKIND列挙値を取得します。 ...た属性値で
 す。
 @return メソッドのINVOKEKINDを返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbooks')
 method = WIN32OLE_METHOD.new(tobj, 'Add')
 puts method.invkind # => 1
 INVOKEKIND列挙値は以下の通りです。メソッドの種類は...
- 
      WIN32OLE_ METHOD # name -> String (3026.0) 
- 
      
      
      メソッド名を取得します。 ...メソッド名を取得します。
 @return メソッド名を文字列で返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbook')
 method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
 puts method.name # => SaveAs...
- 
      WIN32OLE_ METHOD # offset _ vtbl -> Integer (3026.0) 
- 
      
      
      このメソッドのVTBLのオフセットを取得します。 ...出すために利用する関数ポインタのテーブルです。
 @return メソッドのVTBL上のオフセットを返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbooks')
 method = WIN32OLE_METHOD.new(tobj, 'Add')
 puts method.offset_vtbl # => 40...
- 
      WIN32OLE_ METHOD # params -> [WIN32OLE _ PARAM] (3026.0) 
- 
      
      
      メソッドのパラメータ情報を取得します。 ...WIN32OLE_PARAMの配列として返します。配
 列の最初の要素が最左端のパラメータに対応します。
 @return WIN32OLE_PARAMの配列。無引数のメソッドであれば要素数0の配
 列を返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object......Library', 'Workbook')
 method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
 p method.params # => [Filename, FileFormat, Password, WriteResPassword,
 ReadOnlyRecommended, CreateBackup, AccessMode,
 ConflictResolution, AddToMru, TextCodepage,...
- 
      WIN32OLE_ METHOD # return _ type -> String (3026.0) 
- 
      
      
      メソッドの返り値の型名を取得します。 ...を返します。
 @raise WIN32OLERuntimeError メソッドの型情報を取得できなかった場合に通知します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Application')
 method = WIN32OLE_METHOD.new(tobj, 'Visible')
 puts method.return_type # => BOOL
 OLE......オートメーションの型名は、対応するWIN32OLE::VARIANTの定数の先
 頭の「VT_」を削除した名称を持ちます。
 たとえば、32ビット符号付き整数であれば「I4」となります。
 @see WIN32OLE::VARIANT...
- 
      WIN32OLE_ METHOD # return _ vtype -> Integer (3026.0) 
- 
      
      
      メソッドの返り値の型を示す数値を取得します。 ...を返します。
 @raise WIN32OLERuntimeError メソッドの型情報を取得できなかった場合に通知します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Application')
 method = WIN32OLE_METHOD.new(tobj, 'Visible')
 puts method.return_vtype # => 11
 VAREN...
- 
      WIN32OLE_ METHOD # size _ opt _ params -> Integer | nil (3026.0) 
- 
      
      
      オプションパラメータ数を取得します。 ...パラメータ数を整数で返します。メソッドの詳細情報を取
 得できない場合はnilを返します。
 tobj = WIN32OLE_TYPE.new('Microsoft Excel 14.0 Object Library', 'Workbook')
 method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
 puts method.size_opt_params # => 5...
