Methods for cRegistry
View method list in alphabetical order.
| Name | Type | Description | Defining Class |
|---|---|---|---|
| CloseKey | Procedure | Closes a Registry Key | cRegistry |
| CountOfSubkeys | Function | Returns the number of Subkeys for the Key that is currently open | cRegistry |
| CountOfValues | Function | Returns the number of Values that exist for the Key that is currently open | cRegistry |
| CreateKey | Function | Adds a new Key to the Registry | cRegistry |
| DeleteKey | Function | Deletes a Key from the Registry | cRegistry |
| DeleteValue | Function | Deletes a Value from a Key in the Registry | cRegistry |
| GetSubkeys | Function | Retrieves the names of all Subkeys belonging to the open Key | cRegistry |
| GetValues | Function | Retrieves the names of all Values belonging to the open Key | cRegistry |
| KeyExists | Function | Determines whether a Key exists | cRegistry |
| LongestDataLength | Function | Returns the length of the longest data in all Values for the currently open Key | cRegistry |
| LongestSubkeyLength | Function | Returns the length of the longest Subkey name for the currently open Key | cRegistry |
| LongestValueLength | Function | Returns the length of the longest Value name for the currently open Key | cRegistry |
| OpenKey | Function | Opens a Registry Key for access | cRegistry |
| ReadBinary | Function | Reads a binary value from the currently open Key | cRegistry |
| ReadInteger | Function | Reads an Integer value from the currently open Key | cRegistry |
| ReadString | Function | Reads a String value from the currently open Key | cRegistry |
| ReadUInt | Function | Reads a UInteger value from the currently open Key | cRegistry |
| Subkeys | Function | cRegistry | |
| ValueExists | Function | Tests whether a named Value exists in the open Key | cRegistry |
| ValueLength | Function | Returns the length of the data for a named Value of the currently open Key | cRegistry |
| ValueType | Function | Returns the data type for the named Value of the currently open Key | cRegistry |
| WriteBinary | Procedure | Writes a Binary Value into the currently open Key of the Windows Registry | cRegistry |
| WriteInteger | Procedure | Writes an Integer Value into the currently open Key of the Windows Registry | cRegistry |
| WriteString | Procedure | Writes a String Value into the currently open Key of the Windows Registry | cRegistry |
| WriteUInt | Procedure | Writes a UInteger Value into the currently open Key of the Windows Registry | cRegistry |
Inherited Methods from cObject
| Name | Type | Description | Defining Class |
|---|---|---|---|
| ChildByIndex | Function | Can be used to iterate the direct children of an object | cObject |
| ClassSuperClass | Function | Returns the superclass of the passed class | cObject |
| Create | Function | Creates an object based on the passed Class Id | cObject |
| CreateNamed | Function | Creates an object based on the passed Class Id and assigns it a name Name based on a passed name | cObject |
| Destroy | Procedure | Destroys the object that receives the message and any child objects of that object | cObject |
| Exit_Application | Procedure | Starts the process of closing an application | cObject |
| IsClassOfClass | Function | Determines whether the target class is part of the searched class's hierarchy | cObject |
| IsObjectOfClass | Function | Determines whether the passed class is part of the object's class hierarchy | cObject |
| ObjectClass | Function | Returns the integer class ID assigned to the class this object is based on | cObject |
| Request_Destroy_Object | Procedure | Use the Destroy method instead | cObject |