Kimono.KRun.Run C# (CSharp) Method

Run() public static method

Open a list of URLs with. name="exec" the name of the executable, for example "/usr/bin/netscape". name="urls" the list of URLs to open, can be empty (app launched without argument) name="window" The top-level widget of the app that invoked this object. name="name" the logical name of the application, for example "Netscape 4.06". name="icon" the icon which should be used by the application. name="asn" Application startup notification id, if any (otherwise "").
public static Run ( string exec, List urls, QWidget window, string name, string icon, Qyoto.QByteArray asn ) : bool
exec string
urls List
window Qyoto.QWidget
name string
icon string
asn Qyoto.QByteArray
return bool
        public static bool Run(string exec, List<KUrl> urls, QWidget window, string name, string icon, QByteArray asn)
        {
            return (bool) staticInterceptor.Invoke("run$?#$$#", "run(const QString&, const KUrl::List&, QWidget*, const QString&, const QString&, const QByteArray&)", typeof(bool), typeof(string), exec, typeof(List<KUrl>), urls, typeof(QWidget), window, typeof(string), name, typeof(string), icon, typeof(QByteArray), asn);
        }

Same methods

KRun::Run ( Kimono.KService service, List urls, QWidget window ) : bool
KRun::Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles ) : bool
KRun::Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles, string suggestedFileName ) : bool
KRun::Run ( Kimono.KService service, List urls, QWidget window, bool tempFiles, string suggestedFileName, Qyoto.QByteArray asn ) : bool
KRun::Run ( string exec, List urls, QWidget window ) : bool
KRun::Run ( string exec, List urls, QWidget window, string name ) : bool
KRun::Run ( string exec, List urls, QWidget window, string name, string icon ) : bool