|
GetOptions Function
|
|
|
Prototype
|
Public Declare Function GetOptions Lib "TclBridge.dll" () As Long
|
|
Input
|
None.
|
|
Output
|
None.
|
|
Returns
|
The options for created objects.
Can be changed with the SetOptions function or the "TclBridge_Options" environment variable.
Please refer to the TCLBOptions page for the available options.
|
|
COM Results
|
Not applicable.
|
|
Side Effects
|
None.
|
|
Description
|
None.
|
|
Notes
|
The declaration for this function is in the "TclBridgeSupport" (TCLBSUPT.BAS) module.
|
|
Example
|
Private Sub Command1_Click()
Call SetOptions(TCLBOptions.TCLB_oNO_TK) MsgBox "Options = " & GetOptions(), vbInformation, App.Title End Sub |