RegistryKeyMBS properties

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

Back to RegistryKeyMBS class.

RegistryKeyMBS.ItemCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows Registry MBS Win Plugin ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Returns the count of subkeys.
Example
dim i,c as Integer
dim key as RegistryKeyMBS // the registry item

c=key.ItemCount-1
for i=0 to c
// do something
next

This property calls a System function to get the value. So save it in a local variable instead of calling it in a for loop. See the example.
(Read only property)

RegistryKeyMBS.name as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows Registry MBS Win Plugin ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Returns the name of the Key.

(Read only property)

RegistryKeyMBS.ValueCount as Integer

Type Topic Plugin Version macOS Windows Linux iOS Targets
property Windows Registry MBS Win Plugin ❌ No ✅ Yes ❌ No ❌ No Desktop, Console & Web
Returns the count of values.
Example
dim i,c as Integer
dim key as RegistryKeyMBS

c=key.ValueCount
for i=1 to c
// do something
next

This property calls a System function to get the value. So save it in a local variable instead of calling it in a for loop. See the example.
(Read only property)

The items on this page are in the following plugins: MBS Win Plugin.


💬 Ask a question or report a problem