WebTexture.Focus C# (CSharp) 메소드

Focus() 공개 메소드

public Focus ( ) : void
리턴 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;
    }