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

CSS3 Selector of HTML5 Element to append cssText style property.

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

CSS3 style setting to append.

CSS3 style setting value to append.

In This Topic
    SetStyle Method
    In This Topic
    Description

    Appends a style setting and value to style.cssText of an HTML5 Element.

    Syntax
    Visual Basic
    Public Sub SetStyle( _
       ByVal Selector As String, _
       ByVal Setting As String, _
       ByVal Value As String _
    ) 
    Parameters
    Selector

    CSS3 Selector of HTML5 Element to append cssText style property.

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

    Setting

    CSS3 style setting to append.

    Value

    CSS3 style setting value to append.

    Remarks

    This is equivalent to document.querySelector(selector).style.cssText += ';' + setting + ':' + value

    See Also