Kimono.KHTMLPart.SetJSStatusBarText C# (CSharp) Method

SetJSStatusBarText() public method

Called by KJS. Sets the StatusBarText assigned via window.status
public SetJSStatusBarText ( string text ) : void
text string
return void
        public void SetJSStatusBarText(string text)
        {
            interceptor.Invoke("setJSStatusBarText$", "setJSStatusBarText(const QString&)", typeof(void), typeof(string), text);
        }
KHTMLPart