Kimono.KRun.RunCommand C# (CSharp) Method

RunCommand() public static method

Same as the other runCommand(), but it also takes the name of the binary, to display an error message in case it couldn't find it. name="cmd" must be a shell command. You must not append "&" to it, since the function will do that for you. name="execName" the name of the executable name="icon" icon for app starting notification name="window" The top-level widget of the app that invoked this object. name="asn" Application startup notification id, if any (otherwise "").
public static RunCommand ( string cmd, string execName, string icon, QWidget window, Qyoto.QByteArray asn ) : bool
cmd string
execName string
icon string
window Qyoto.QWidget
asn Qyoto.QByteArray
return bool
        public static bool RunCommand(string cmd, string execName, string icon, QWidget window, QByteArray asn)
        {
            return (bool) staticInterceptor.Invoke("runCommand$$$##", "runCommand(const QString&, const QString&, const QString&, QWidget*, const QByteArray&)", typeof(bool), typeof(string), cmd, typeof(string), execName, typeof(string), icon, typeof(QWidget), window, typeof(QByteArray), asn);
        }

Same methods

KRun::RunCommand ( string cmd, QWidget window ) : bool
KRun::RunCommand ( string cmd, string execName, string icon, QWidget window ) : bool