るりまサーチ (Ruby 2.2.0)

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

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d
  4. rsa d=
  5. matrix d

検索結果

Win32::Registry#_dump (18307.0)

@todo

@todo

Win32::Registry#created? (18307.0)

@todo

@todo

キーが新しく作成された場合,真を返します。
(⇒Win32::Registry.create)

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

@todo

@todo

レジストリ値 name を削除します。
(標準) レジストリ値を削除することはできません。

Win32::Registry#delete_key(name, recursive = false) (18307.0)

@todo

@todo

サブキー name とそのキーが持つすべての値を削除します。

recursive が false の場合,そのサブキーはサブキーを持っていてはなりません。
true の場合,キーは再帰的に削除されます。

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

@todo

@todo

レジストリ値 name を削除します。
(標準) レジストリ値を削除することはできません。

絞り込み条件を変える

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#opened? (18307.0)

@todo

@todo

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

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

@todo

@todo

レジストリ値 name を読み,[ type, data ]
の配列で返します。
name が nil の場合,(標準) レジストリ値が読み込まれます。

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

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

@todo

@todo

型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。

型がマッチしなかった場合,TypeError が発生します。

絞り込み条件を変える

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

@todo

@todo

型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。

型がマッチしなかった場合,TypeError が発生します。

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

@todo

@todo

型がそれぞれ REG_SZ(read_s), REG_DWORD(read_i), REG_BINARY(read_bin)
であるレジストリ値 name を読み,その値を返します。

型がマッチしなかった場合,TypeError が発生します。

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.expand_environ(str) (18307.0)

@todo

@todo

str の %\w+% という並びを環境変数に置換します。
REG_EXPAND_SZ で用いられます。

詳細は以下の Win32 API を参照してください。

* ExpandEnvironmentStrings: http://msdn.microsoft.com/library/en-us/sysinfo/base/expandenvironmentstrings.asp

Win32::Registry::Constants::REG_CREATED_NEW_KEY (18307.0)

@todo

@todo

キーが新しく作られたか、既存キーが開かれたか。
Win32::Registry#disposition メソッドも参照してください。

絞り込み条件を変える

Win32::Registry::Constants::REG_OPENED_EXISTING_KEY (18307.0)

@todo

@todo

キーが新しく作られたか、既存キーが開かれたか。
Win32::Registry#disposition メソッドも参照してください。

Win32::Registry::Error#code (18307.0)

@todo

@todo

Win32::Registry::PredefinedKey (18007.0)

Win32::Registry::API.#packdw(dw) (9607.0)

@todo

@todo

Win32::Registry::API.#unpackdw(dw) (9607.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::API.#DeleteKey(hkey, name) (9307.0)

@todo

@todo

Win32::Registry::API.#DeleteValue(hkey, name) (9307.0)

@todo

@todo

Win32::Registry::API::RegDeleteKey (9307.0)

@todo

@todo

Win32::Registry::API::RegDeleteValue (9307.0)

@todo

@todo

Win32::Registry::Constants::HKEY_DYN_DATA (9307.0)

@todo

@todo

定義済キー値。
これらは Integer で、Win32::Registry オブジェクトではありません。

絞り込み条件を変える

Win32::Registry::Constants::HKEY_PERFORMANCE_DATA (9307.0)

@todo

@todo

定義済キー値。
これらは Integer で、Win32::Registry オブジェクトではありません。

Win32::Registry::Constants::KEY_READ (9307.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::REG_DWORD (9307.0)

@todo

@todo

レジストリ値の型。

Win32::Registry::Constants::REG_DWORD_BIG_ENDIAN (9307.0)

@todo

@todo

レジストリ値の型。

Win32::Registry::Constants::REG_DWORD_LITTLE_ENDIAN (9307.0)

@todo

@todo

レジストリ値の型。

絞り込み条件を変える

Win32::Registry::Constants::REG_EXPAND_SZ (9307.0)

@todo

@todo

レジストリ値の型。

Win32::Registry::Constants::REG_FULL_RESOURCE_DESCRIPTOR (9307.0)

@todo

@todo

レジストリ値の型。

Win32::Registry::Constants::REG_OPTION_RESERVED (9307.0)

@todo

@todo

Win32::Registry::Constants::REG_QWORD (9307.0)

@todo

@todo

レジストリ値の型。

Win32::Registry::Constants::REG_QWORD_LITTLE_ENDIAN (9307.0)

@todo

@todo

レジストリ値の型。

絞り込み条件を変える

Win32::Registry::Constants::STANDARD_RIGHTS_READ (9307.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::Constants::STANDARD_RIGHTS_WRITE (9307.0)

@todo

@todo

セキュリティアクセスマスク。

Win32::Registry::HKEY_DYN_DATA -> Win32::Registry (9307.0)

@todo

@todo

それぞれの定義済キーを表す Win32::Registry オブジェクトです。

詳細は以下の MSDN Library を参照してください。

* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp

Win32::Registry::HKEY_PERFORMANCE_DATA -> Win32::Registry (9307.0)

@todo

@todo

それぞれの定義済キーを表す Win32::Registry オブジェクトです。

詳細は以下の MSDN Library を参照してください。

* Predefined Keys: http://msdn.microsoft.com/library/en-us/sysinfo/base/predefined_keys.asp

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::PredefinedKey#class (9007.0)

@todo

@todo

Win32::Registry::PredefinedKey#close (9007.0)

@todo

@todo

Win32::Registry::PredefinedKey.new(hkey, keyname) (9007.0)

@todo

@todo

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

@todo

@todo

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

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

@todo

@todo

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

絞り込み条件を変える

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

@todo

@todo

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

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

Win32::Registry.create(key, subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) (307.0)

@todo

@todo

レジストリキー key 下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

サブキーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。

ブロックが与えられると,キーは自動的に閉じられます。

Win32::Registry.create(key, subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) {|reg| ... } (307.0)

@todo

@todo

レジストリキー key 下にキー subkey を作成し,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

サブキーが既に存在していればキーはただ開かれ,Win32::Registry#created?
メソッドが false を返します。

ブロックが与えられると,キーは自動的に閉じられます。

Win32::Registry.new(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) (307.0)

@todo

@todo

レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。

* Registry Key Security and Access Rights: http://msdn.mic...

Win32::Registry.new(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) {|reg| ... } (307.0)

@todo

@todo

レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。

* Registry Key Security and Access Rights: http://msdn.mic...

絞り込み条件を変える

Win32::Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) (307.0)

@todo

@todo

レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。

* Registry Key Security and Access Rights: http://msdn.mic...

Win32::Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) {|reg| ... } (307.0)

@todo

@todo

レジストリキー key 下のキー subkey を開き,
開いたキーを表す Win32::Registry オブジェクトを返します。
key は親のキーを Win32::Registry オブジェクトで指定します。
親のキーには定義済キー HKEY_* を使用できます (⇒Win32::Registry::Constants)

desired はアクセスマスクです。opt はキーのオプションです。
詳細は以下の MSDN Library を参照してください。

* Registry Key Security and Access Rights: http://msdn.mic...

Win32::Registry::API.#CreateKey(hkey, name, opt, desired) (307.0)

@todo

@todo

Win32::Registry::API.#EnumKey(hkey, index) (307.0)

@todo

@todo

Win32::Registry::API.#EnumValue(hkey, index) (307.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::API.#OpenKey(hkey, name, opt, desired) (307.0)

@todo

@todo

Win32::Registry::API.#SetValue(hkey, name, type, data, size) (307.0)

@todo

@todo