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

    Contains a reference to a hWnd that will be used to display GUIs.

    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property SitehWnd As Long
    Remarks

    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