mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / SetInnerHTML Method

CSS3 Selector of the element to set its inner HTML5 markup.

If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

The HTML5 markup to set.

In This Topic
    SetInnerHTML Method
    In This Topic
    Description

    Set the inner HTML of an HTML5 Element.

    Syntax
    Visual Basic
    Public Sub SetInnerHTML( _
       ByVal Selector As String, _
       ByVal HTML As String _
    ) 
    Parameters
    Selector

    CSS3 Selector of the element to set its inner HTML5 markup.

    If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

    HTML

    The HTML5 markup to set.

    Example
    s = InputBox("InnerHTML", , WebKitX1.GetInnerHTML(Selector))
    If s <> "" Then
        WebKitX1.SetInnerHTML Selector, s
    End If
    See Also