Kimono.KHTMLPart.ExecuteScript C# (CSharp) Method

ExecuteScript() public method

Same as executeScript( string ) except with the Node parameter specifying the 'this' value.
public ExecuteScript ( DOM n, string script ) : Qyoto.QVariant
n DOM
script string
return Qyoto.QVariant
        public QVariant ExecuteScript(DOM.Node n, string script)
        {
            return (QVariant) interceptor.Invoke("executeScript#$", "executeScript(const DOM::Node&, const QString&)", typeof(QVariant), typeof(DOM.Node), n, typeof(string), script);
        }
KHTMLPart