るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
148件ヒット [1-100件を表示] (0.054秒)
トップページ > バージョン:2.2.0[x] > クエリ:Win32::Registry[x]

別のキーワード

  1. win32ole new
  2. win32ole name
  3. win32ole to_s
  4. win32ole ole_type
  5. win32ole visible?

ライブラリ

キーワード

検索結果

<< 1 2 > >>

Win32::Registry (69001.0)

Win32::Registry::HKEY_CLASSES_ROOT -> Win32::Registry (63346.0)

@todo

@todo

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

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

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

Win32::Registry::HKEY_CURRENT_CONFIG -> Win32::Registry (63346.0)

@todo

@todo

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

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

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

Win32::Registry::HKEY_CURRENT_USER -> Win32::Registry (63346.0)

@todo

@todo

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

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

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

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

@todo

@todo

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

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

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

絞り込み条件を変える

Win32::Registry::HKEY_LOCAL_MACHINE -> Win32::Registry (63346.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 (63346.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_NLSTEXT -> Win32::Registry (63346.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_TEXT -> Win32::Registry (63346.0)

@todo

@todo

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

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

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

Win32::Registry::HKEY_USERS -> Win32::Registry (63346.0)

@todo

@todo

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

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

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

絞り込み条件を変える

Win32::Registry.create(key, subkey, desired = KEY_ALL_ACCESS, opt = REG_OPTION_RESERVED) (63073.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| ... } (63073.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) (63055.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| ... } (63055.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) (63055.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| ... } (63055.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#keyname (63037.0)

@todo

@todo

Win32::Registry.open または Win32::Registry.create に指定された
subkey の値を返します。

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

@todo

@todo

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

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

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

@todo

@todo

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

Win32::Registry#created? (63019.0)

@todo

@todo

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

絞り込み条件を変える

Win32::Registry#each_key {|subkey, wtime| ... } (63019.0)

@todo

@todo

キーのサブキーを列挙します。

subkey はサブキーの名前を表す String です。
wtime は最終更新時刻を表す FILETIME (64-bit 整数) です。
(⇒Win32::Registry.wtime2time)

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

@todo

@todo

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

Win32::Registry#parent (63019.0)

@todo

@todo

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

Win32::Registry#read(name, *rtype) (63019.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#[](name, wtype = nil) (63001.0)

@todo

@todo

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

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

絞り込み条件を変える

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

@todo

@todo

Win32::Registry#_dump (63001.0)

@todo

@todo

Win32::Registry#close (63001.0)

@todo

@todo

開かれているキーを閉じます。

閉じられた後では,多くのメソッドは例外を発生します。

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

@todo

@todo

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

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

@todo

@todo

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

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

絞り込み条件を変える

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

@todo

@todo

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

Win32::Registry#descriptor_length (63001.0)

@todo

@todo

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

Win32::Registry#disposition (63001.0)

@todo

@todo

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

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

@todo

@todo

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

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

@todo

@todo

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

絞り込み条件を変える

Win32::Registry#flush (63001.0)

@todo

@todo

キーの全てのデータをレジストリファイルに書き込みます。

Win32::Registry#hkey (63001.0)

@todo

@todo

Win32::Registry#info (63001.0)

@todo

@todo

キー情報を以下の値の配列で返します:
* num_keys
サブキーの個数
* max_key_length
サブキー名の最大長
* num_values
値の個数
* max_value_name_length
値の名前の最大長
* max_value_length
値の最大長
* descriptor_length
セキュリティ記述子の長さ
* wtime
最終更新時刻 (FILETIME)

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

* RegQueryInfoKey: h...

Win32::Registry#inspect (63001.0)

@todo

@todo

Win32::Registry#keys (63001.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry#max_key_length (63001.0)

@todo

@todo

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

Win32::Registry#max_value_length (63001.0)

@todo

@todo

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

Win32::Registry#max_value_name_length (63001.0)

@todo

@todo

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

Win32::Registry#name (63001.0)

@todo

@todo

キーのフルパスを 'HKEY_CURRENT_USER\SOFTWARE\foo\bar'
のような形で返します。

Win32::Registry#num_keys (63001.0)

@todo

@todo

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

絞り込み条件を変える

Win32::Registry#num_values (63001.0)

@todo

@todo

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

Win32::Registry#open? (63001.0)

@todo

@todo

Win32::Registry#opened? (63001.0)

@todo

@todo

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

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

@todo

@todo

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

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

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

@todo

@todo

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

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

絞り込み条件を変える

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

@todo

@todo

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

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

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

@todo

@todo

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

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

Win32::Registry#to_s (63001.0)

@todo

@todo

キーのフルパスを 'HKEY_CURRENT_USER\SOFTWARE\foo\bar'
のような形で返します。

Win32::Registry#write_bin(name, value) (63001.0)

@todo

@todo

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

レジストリ値の型はそれぞれ REG_SZ(write_s), REG_DWORD(write_i),
REG_BINARY(write_bin) です。

Win32::Registry#write_i(name, value) (63001.0)

@todo

@todo

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

レジストリ値の型はそれぞれ REG_SZ(write_s), REG_DWORD(write_i),
REG_BINARY(write_bin) です。

絞り込み条件を変える

Win32::Registry#write_s(name, value) (63001.0)

@todo

@todo

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

レジストリ値の型はそれぞれ REG_SZ(write_s), REG_DWORD(write_i),
REG_BINARY(write_bin) です。

Win32::Registry#wtime (63001.0)

@todo

@todo

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

Win32::Registry.expand_environ(str) (63001.0)

@todo

@todo

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

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

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

Win32::Registry.time2wtime(time) (63001.0)

@todo

@todo

Time オブジェクトまたは Integer オブジェクトを受け取り,
64bit の FILETIME に変換します。

Win32::Registry.type2name(type) (63001.0)

@todo

@todo

レジストリ値の型を整数から可読文字列に変換します。

絞り込み条件を変える

Win32::Registry.wtime2time(wtime) (63001.0)

@todo

@todo

64bit の FILETIME を Time オブジェクトに変換します。

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

* FILETIME Structure: http://msdn.microsoft.com/library/en-us/sysinfo/base/filetime_str.asp

Win32::Registry::Constants::HKEY_CLASSES_ROOT (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_CURRENT_CONFIG (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_CURRENT_USER (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_DYN_DATA (9019.0)

@todo

@todo

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

絞り込み条件を変える

Win32::Registry::Constants::HKEY_LOCAL_MACHINE (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_PERFORMANCE_DATA (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_PERFORMANCE_NLSTEXT (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_PERFORMANCE_TEXT (9019.0)

@todo

@todo

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

Win32::Registry::Constants::HKEY_USERS (9019.0)

@todo

@todo

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

絞り込み条件を変える

Win32::Registry::Constants::REG_CREATED_NEW_KEY (9019.0)

@todo

@todo

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

Win32::Registry::Constants::REG_OPENED_EXISTING_KEY (9019.0)

@todo

@todo

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

Win32::Registry::API (9001.0)

Win32::Registry::API.#CloseKey(hkey) (9001.0)

@todo

@todo

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

Win32::Registry::API.#FlushKey(hkey) (9001.0)

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

Win32::Registry::API.#QueryInfoKey(hkey) (9001.0)

@todo

@todo

Win32::Registry::API.#QueryValue(hkey, name) (9001.0)

@todo

@todo

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

@todo

@todo

Win32::Registry::API.#check(result) (9001.0)

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

Win32::Registry::API.#packqw(qw) (9001.0)

@todo

@todo

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

@todo

@todo

Win32::Registry::API.#unpackqw(qw) (9001.0)

@todo

@todo

Win32::Registry::API::RegCloseKey (9001.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::API::RegCreateKeyExA (9001.0)

@todo

@todo

Win32::Registry::API::RegDeleteKey (9001.0)

@todo

@todo

Win32::Registry::API::RegDeleteValue (9001.0)

@todo

@todo

Win32::Registry::API::RegEnumKeyExA (9001.0)

@todo

@todo

Win32::Registry::API::RegEnumValueA (9001.0)

@todo

@todo

絞り込み条件を変える

Win32::Registry::API::RegFlushKey (9001.0)

@todo

@todo

Win32::Registry::API::RegOpenKeyExA (9001.0)

@todo

@todo

Win32::Registry::API::RegQueryInfoKey (9001.0)

@todo

@todo

Win32::Registry::API::RegQueryValueExA (9001.0)

@todo

@todo

Win32::Registry::API::RegSetValueExA (9001.0)

@todo

@todo

絞り込み条件を変える

<< 1 2 > >>