|
|
|
|
|
SftOptionsEntry.Name Property |
Defines the entry's name.
Syntax
|
VB.NET |
String = object.Name As String |
||
|
VB |
String = object.Name As String |
||
|
C#.NET |
string String = object.Name; |
||
|
VC++ |
_bstr_t String = object->Name;
|
||
|
C |
HRESULT object->get_Name(BSTR* String); |
||
|
Delphi |
String := object.Name : WideString; |
||
|
VB.NET |
object.Name = String As String |
||
|
VB |
object.Name = String As String |
||
|
C#.NET |
string object.Name = String; |
||
|
VC++ |
_bstr_t object->Name = String;
|
||
|
C |
HRESULT object->put_Name(BSTR String); |
||
|
Delphi |
object.Name := String : WideString; |
||
object
A SftOptionsEntry object.
String
Defines the entry's name.
Comments
The Name property defines the entry's name.
The entry name is used by the application to refer to the entry (using the SftOptions.Entry property) and is also used to load/save option settings from the location defined by SftOptionsIO.File or SftOptionsIO.Registry.
See Also SftOptionsEntry Object | Object Hierarchy