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.


The biggest plugin in space...