mobileFX JavaScriptX - Google V8 JavaScript Embedded Framework
JavaScriptXLib ActiveX DLL / ScriptControl Object / Language Property
In This Topic
    Language Property
    In This Topic
    Description

    Sets or returns the name of the scripting language being used.

    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property Language As String
    Return Type

    This is always JavaScript.

    Remarks

    This is always JavaScript. The property is offer for compatibility with Micrsofot Script Control and does not affect JavaScriptX functionality.

    Example
    Private Sub Form_Load()
        
        Set SC = New ScriptControl
        SC.Language = "JavaScript"
        SC.AllowUI = True
        SC.SitehWnd = Me.hWnd
        SC.UseSafeSubset = False
        SC.Timeout = 60
            
    End Sub
    See Also