At.FF.Krems.FullscreenBrowser.FilteredPromptService.ConfirmEx C# (CSharp) Method

ConfirmEx() public method

The confirm ex.
public ConfirmEx ( nsIDOMWindow parent, string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkState ) : int
parent nsIDOMWindow The parent.
dialogTitle string The dialog title.
text string The text.
buttonFlags uint The button flags.
button0Title string The button 0 title.
button1Title string The button 1 title.
button2Title string The button 2 title.
checkMsg string The check message.
checkState bool The check state.
return int
        public int ConfirmEx(
            nsIDOMWindow parent,
            string dialogTitle,
            string text,
            uint buttonFlags,
            string button0Title,
            string button1Title,
            string button2Title,
            string checkMsg,
            ref bool checkState)
        {
            return PromptService.ConfirmEx(dialogTitle, text, buttonFlags, button0Title, button1Title, button2Title, checkMsg, ref checkState);
        }

Same methods

FilteredPromptService::ConfirmEx ( string dialogTitle, string text, uint buttonFlags, string button0Title, string button1Title, string button2Title, string checkMsg, bool &checkValue ) : int