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

CSS3 Selector of the element to set its outer 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
    SetOuterHTML Method
    In This Topic
    Description

    Set the outer HTML of an HTML5 Element.

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

    CSS3 Selector of the element to set its outer 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("OuterHTML", , WebKitX1.GetOuterHTML(Selector))
    If s <> "" Then
        WebKitX1.SetOuterHTML Selector, s
    End If
    See Also