closeDialog: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]2(\|.*)]]" to "{{GameCategory|arma2|Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


| ofp |Game name=
| ofp |Game name=
Line 11: Line 10:


|gr1= GUI Control |GROUP1=
|gr1= GUI Control |GROUP1=
____________________________________________________________________________________________


| Close the currently active user dialog with exit code. Most common exit codes are:
| Close the currently active user dialog with exit code. Most common exit codes are:
<code>#define IDC_OK            1 //emulate "Ok" button</code>
<code>#define IDC_OK            1 //emulate "Ok" button</code>
<code>#define IDC_CANCEL        2 //emulate "Cancel" button</code>|DESCRIPTION=
<code>#define IDC_CANCEL        2 //emulate "Cancel" button</code>|DESCRIPTION=
____________________________________________________________________________________________


| '''closeDialog''' exitcode |SYNTAX=
| '''closeDialog''' exitcode |SYNTAX=
Line 23: Line 20:


| [[Nothing]] |RETURNVALUE=
| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
   
   
|x1= <code>[[closeDialog]] 2;</code>|EXAMPLE1=  
|x1= <code>[[closeDialog]] 2;</code>|EXAMPLE1=  
Line 29: Line 25:
|x2= <code>#define IDC_CANCEL 2
|x2= <code>#define IDC_CANCEL 2
[[closeDialog]] IDC_CANCEL;</code> |EXAMPLE2=
[[closeDialog]] IDC_CANCEL;</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[createDialog]], [[dialog]], [[closeDisplay]] |SEEALSO=
| [[createDialog]], [[dialog]], [[closeDisplay]] |SEEALSO=

Revision as of 01:18, 17 January 2021

Hover & click on the images for description

Description

Description:
Close the currently active user dialog with exit code. Most common exit codes are: #define IDC_OK 1 //emulate "Ok" button #define IDC_CANCEL 2 //emulate "Cancel" button
Groups:
GUI Control

Syntax

Syntax:
closeDialog exitcode
Parameters:
exitcode : Number
Return Value:
Nothing

Examples

Example 1:
closeDialog 2;
Example 2:
#define IDC_CANCEL 2 closeDialog IDC_CANCEL;

Additional Information

See also:
createDialogdialogcloseDisplay

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section