closeDialog: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(see also, example, description)
Line 11: Line 11:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Close the currently active user dialog. |= Description
| 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_CANCEL        2 //emulate "Cancel" button</code>|= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 21: Line 23:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>closeDialog 0</pre> |= Example 1
|x1= <code>[[closeDialog]] 2;</code>|= Example 1  
 
|x2= <code>#define IDC_CANCEL 2
[[closeDialog]] IDC_CANCEL;</code> |= Example 2
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[createDialog]], [[dialog]] |= See also
| [[createDialog]], [[dialog]], [[closeDisplay]] |= See also


}}
}}

Revision as of 01:26, 20 August 2014

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:
Uncategorised

Syntax

Syntax:
closeDialog idc
Parameters:
idc : 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