Kimono.KRun.RunCommand C# (CSharp) Method

RunCommand() public static method

Run the given shell command and notifies kicker of the starting of the application. If the program to be called doesn't exist, an error box will be displayed. Use only when you know the full command line. Otherwise use the other static methods, or KRun's constructor. cmd must be a shell command. You must not append "&" to it, since the function will do that for you. name="window" The top-level widget of the app that invoked this object.
public static RunCommand ( string cmd, QWidget window ) : bool
cmd string
window Qyoto.QWidget
return bool
        public static bool RunCommand(string cmd, QWidget window)
        {
            return (bool) staticInterceptor.Invoke("runCommand$#", "runCommand(const QString&, QWidget*)", typeof(bool), typeof(string), cmd, typeof(QWidget), window);
        }

Same methods

KRun::RunCommand ( string cmd, string execName, string icon, QWidget window ) : bool
KRun::RunCommand ( string cmd, string execName, string icon, QWidget window, Qyoto.QByteArray asn ) : bool