|
|
|
SftDirectory.RegistryEntry Property |
Defines the Registry location used to load and save layout information.
Syntax
VB.NET |
EntryName = object.RegistryEntry As String |
||
VB |
EntryName = object.RegistryEntry As String |
||
C#.NET |
string EntryName = object.RegistryEntry; |
||
VC++ |
_bstr_t EntryName = object->RegistryEntry;
|
||
C |
HRESULT object->get_RegistryEntry(BSTR* EntryName); |
||
Delphi |
EntryName := object.RegistryEntry : WideString; |
||
VB.NET |
object.RegistryEntry = EntryName As String |
||
VB |
object.RegistryEntry = EntryName As String |
||
C#.NET |
string object.RegistryEntry = EntryName; |
||
VC++ |
_bstr_t object->RegistryEntry = EntryName;
|
||
C |
HRESULT object->put_RegistryEntry(BSTR EntryName); |
||
Delphi |
object.RegistryEntry := EntryName : WideString; |
object
A SftDirectory object.
EntryName
Defines the Registry entry, located at the Registry path defined by the RegistryLocation property, where the column layout and control information is located (see below). If an empty string is specified, the "(Default)" entry is used.
Comments
The RegistryEntry property defines the Registry location used to load and save layout information.
The RegistryEntry property must be set at design-time to take effect.
If the RegistryLocation property is defined, the control automatically invokes LoadLayout and SaveLayout, when it is created and destroyed.
If the RegistryLocation property is empty, the RegistryEntry property has no effect.