Kimono.KMessageBox.QueuedDetailedError C# (CSharp) Method

QueuedDetailedError() public static method

Like detailedError This function will return immediately, the messagebox will be shown once the application enters an event loop and no other messagebox is being shown. Note that if the parent gets deleted, the messagebox will not be shown.
public static QueuedDetailedError ( QWidget parent, string text, string details, string caption ) : void
parent QWidget
text string
details string
caption string
return void
        public static void QueuedDetailedError(QWidget parent, string text, string details, string caption)
        {
            staticInterceptor.Invoke("queuedDetailedError#$$$", "queuedDetailedError(QWidget*, const QString&, const QString&, const QString&)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), details, typeof(string), caption);
        }

Same methods

KMessageBox::QueuedDetailedError ( QWidget parent, string text, string details ) : void