|
|
|
|
|
SftOptsIO.Registry Property |
Defines the registry path used to store property settings.
Syntax
|
VB.NET |
RegistryPath = object.Registry As String |
||
|
VB |
RegistryPath = object.Registry As String |
||
|
C#.NET |
string RegistryPath = object.Registry; |
||
|
VC++ |
_bstr_t RegistryPath = object->Registry;
|
||
|
C |
HRESULT object->get_Registry(BSTR* RegistryPath); |
||
|
Delphi |
RegistryPath := object.Registry : WideString; |
||
|
VB.NET |
object.Registry = RegistryPath As String |
||
|
VB |
object.Registry = RegistryPath As String |
||
|
C#.NET |
string object.Registry = RegistryPath; |
||
|
VC++ |
_bstr_t object->Registry = RegistryPath;
|
||
|
C |
HRESULT object->put_Registry(BSTR RegistryPath); |
||
|
Delphi |
object.Registry := RegistryPath : WideString; |
||
object
A SftOptsIO object.
RegistryPath
Defines the registry path used to store property settings.
Comments
The Registry property defines the registry path used to store property settings (please see the SftOptionsIO.Registry property for complete information).
The SftOptsIO control is used by an application to retrieve (or set) option values. The SftOptsIO control does not offer a user interface. The SftOptions control is used to provide a user interface to allow the end-user to modify option settings.
The SftOptsIO control offers simplified Registry and INI file I/O to retrieve or set option values.
The SftOptsIO.Registry property is identical to the SftOptionsIO.Registry property.
Example
Dim CheckBoxValue As String
SftOptsIO1.Registry = "USR:Software\Softelvdm\TestData\FirstSample"
CheckBoxValue = SftOptsIO1.OptionValue("Cb1")
See Also SftOptsIO Object | Object Hierarchy