|
|
|
|
|
SftOptions.IO Property |
Returns the SftOptionsIO object.
Syntax
|
VB.NET |
refIOObj = object.IO As SftOptionsIO |
||
|
VB |
Set refIOObj = object.IO As SftOptionsIO |
||
|
C#.NET |
SftOptionsIO refIOObj = object.IO; |
||
|
VC++ |
ISftOptionsIO* refIOObj = object->IO;
|
||
|
C |
HRESULT object->get_IO(ISftOptionsIO** refIOObj); |
||
|
Delphi |
refIOObj := object.IO : ISftOptionsIO; |
||
object
A SftOptions object.
refIOObj
Returns the SftOptionsIO object.
Comments
The IO property returns the SftOptionsIO object.
The SftOptionsIO object is used to retrieve and set options as they are currently saved in the Registry or INI file.
Example
Dim CheckBoxValue As String
SftOptions1.IO.Registry = "USR:Software\Softelvdm\TestData\FirstSample"
CheckBoxValue = SftOptions1.IO.OptionValue("Cb1")
See Also SftOptions Object | Object Hierarchy