mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / Settings Object / accept_language_list Property
In This Topic
    accept_language_list Property
    In This Topic
    Description

    Comma delimited ordered list of language codes without any whitespace that will be used in the "Accept-Language" HTTP header.

    Property type
    Read-write property
    Syntax
    Visual Basic
    Public Property accept_language_list As String
    Remarks

    If value is empty then "en-US,en" will be used.

    Example
    Private Sub WebKitX1_OnCreate(ByVal Settings As WebKitXCEF3Lib.ISettings, CommandLineSwitches As String)
    
        ' Accept Spanish (Chile) and English (Great Britain)
        Settings.accept_language_list = "es-CL,en-GB"   
        
    End Sub
    See Also