GetInterpreterOptions Function
Prototype
Public Declare Function GetInterpreterOptions Lib "TclBridge.dll" () As Long
Input
None.
Output
None.
Returns
The options for created interpreters. Can be changed with the SetInterpreterOptions function. Please refer to the TCLBInterpreterOptions 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 SetInterpreterOptions(TCLBInterpreterOptions.TCLB_iTK)

    MsgBox "Interpreter options = " & GetInterpreterOptions(), vbInformation, App.Title
End Sub