るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.114秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:p[x] > バージョン:2.1.0[x] > クラス:Win32::Registry[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

ライブラリ

キーワード

検索結果

Win32::Registry#_dump (18307.0)

@todo

@todo

Win32::Registry#descriptor_length (18307.0)

@todo

@todo

キー情報の個々の値を返します。

Win32::Registry#disposition (18307.0)

@todo

@todo

キーの disposition 値を返します。
(REG_CREATED_NEW_KEY または REG_OPENED_EXISTING_KEY)

Win32::Registry#inspect (18307.0)

@todo

@todo

Win32::Registry#open(subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) (18307.0)

@todo

...@todo

Win32::Registry
.open(self, subkey, desired, opt) と同じです。...

絞り込み条件を変える

Win32::Registry#open? (18307.0)

@todo

@todo

Win32::Registry#opened? (18307.0)

@todo

@todo

キーがまだ閉じられていない場合,真を返します。

Win32::Registry#parent (18307.0)

@todo

...@todo

親のキーを表す Win32::Registry オブジェクトを返します。
定義済キーでは nil を返します。...

Win32::Registry#read_s_expand(name) (18307.0)

@todo

@todo

型が REG_SZ または REG_EXPAND_SZ であるレジストリ値 name を読み,
その値を返します。

型が REG_EXPAND_SZ だった場合,環境変数が置換された値が返ります。
REG_SZ または REG_EXPAND_SZ 以外だった場合,TypeError が発生します。

Win32::Registry#max_key_length (9007.0)

@todo

@todo

キー情報の個々の値を返します。

絞り込み条件を変える

Win32::Registry#max_value_length (9007.0)

@todo

@todo

キー情報の個々の値を返します。

Win32::Registry#max_value_name_length (9007.0)

@todo

@todo

キー情報の個々の値を返します。

Win32::Registry#num_keys (9007.0)

@todo

@todo

キー情報の個々の値を返します。

Win32::Registry#num_values (9007.0)

@todo

@todo

キー情報の個々の値を返します。

Win32::Registry#wtime (9007.0)

@todo

@todo

キー情報の個々の値を返します。

絞り込み条件を変える

Win32::Registry#create(subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) (607.0)

@todo

...@todo

Win32::Registry
.create(self, subkey, desired, opt) と同じです。...

Win32::Registry#[](name, wtype = nil) (307.0)

@todo

@todo

レジストリ値 name に value を書き込みます。

オプション引数 wtype を指定した場合は,その型で書き込みます。
指定しなかった場合,value のクラスに応じて次の型で書き込みます:
* Integer
REG_DWORD
* String
REG_SZ
* Array
REG_MULTI_SZ

Win32::Registry#[]=(name, rtype, value = nil) (307.0)

@todo

@todo

Win32::Registry#each {|name, type, value| ... } (307.0)

@todo

@todo

キーが持つレジストリ値を列挙します。

Win32::Registry#each_value {|name, type, value| ... } (307.0)

@todo

@todo

キーが持つレジストリ値を列挙します。

絞り込み条件を変える

Win32::Registry#read(name, *rtype) (307.0)

@todo

...返します。
name が nil の場合,(標準) レジストリ値が読み込まれます。

type はレジストリ値の型です。(⇒Win32::Registry::Constants)
data はレジストリ値のデータで,クラスは以下の通りです:
* REG_SZ, REG_EXPAND_SZ
String
* REG_MULTI_...

Win32::Registry#write(name, type, data) (307.0)

@todo

...e に型 type で data を書き込みます。
name が nil の場合,(標準) レジストリ値に書き込みます。

type はレジストリ値の型です。(⇒Win32::Registry::Constants)
data のクラスは Win32::Registry#read
メソッドに準じていなければなりません。...