WebTexture.Focus C# (CSharp) Method

Focus() public method

public Focus ( ) : void
return void
    public void Focus()
    {
        if (!WebCore.IsRunning)
            return;

        // Unfocus all open webViews, then focus the webView that was just clicked

        foreach (WebView view in webViewList)
            view.Unfocus();

        webView.Focus();
        isFocused = true;
    }