UIX_MsgBoxResult Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
m (Automatic page editing by robot)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:UIX_MsgBoxResult Enumeration}}
 
{{#customTitle:UIX_MsgBoxResult Enumeration}}
 +
{{#parentPage:PXV:UIX_Enumerations|UIX_MsgBoxResult|enum}}
 +
{{ToWrite}}
 +
{{ToReview}}
  
 
Specifies the ...
 
Specifies the ...
Line 7: Line 11:
 
<pre class="brush:cpp;gutter:false">enum UIX_MsgBoxResult
 
<pre class="brush:cpp;gutter:false">enum UIX_MsgBoxResult
 
{
 
{
     UIX_OK = 1;
+
     UIX_OK             = 1,
     UIX_Cancel = 2;
+
     UIX_Cancel         = 2,
     UIX_Abort = 3;
+
     UIX_Abort           = 3,
     UIX_Retry = 4;
+
     UIX_Retry           = 4,
     UIX_Ignore = 5;
+
     UIX_Ignore         = 5,
     UIX_Yes = 6;
+
     UIX_Yes             = 6,
     UIX_No = 7;
+
     UIX_No             = 7,
     UIX_Close = 8;
+
     UIX_Close           = 8,
     UIX_Help = 9;
+
     UIX_Help           = 9,
     UIX_Try = 10;
+
     UIX_Try             = 10,
     UIX_Continue = 11;
+
     UIX_Continue       = 11,
     UIX_IgnoreAll = 12;
+
     UIX_IgnoreAll       = 12,
     UIX_YesToAll = 13;
+
     UIX_YesToAll       = 13,
     UIX_NoToAll = 14;
+
     UIX_NoToAll         = 14,
     _UIX_MsgBox_MaxRes_ = 15;
+
     _UIX_MsgBox_MaxRes_ = 15,
 
};
 
};
 
</pre>
 
</pre>
Line 56: Line 60:
 
;_UIX_MsgBox_MaxRes_
 
;_UIX_MsgBox_MaxRes_
 
:The ...
 
:The ...
 
== See Also ==
 
See also ...
 

Latest revision as of 10:43, 23 May 2015


Specifies the ...

Syntax

enum UIX_MsgBoxResult
{
    UIX_OK              = 1,
    UIX_Cancel          = 2,
    UIX_Abort           = 3,
    UIX_Retry           = 4,
    UIX_Ignore          = 5,
    UIX_Yes             = 6,
    UIX_No              = 7,
    UIX_Close           = 8,
    UIX_Help            = 9,
    UIX_Try             = 10,
    UIX_Continue        = 11,
    UIX_IgnoreAll       = 12,
    UIX_YesToAll        = 13,
    UIX_NoToAll         = 14,
    _UIX_MsgBox_MaxRes_ = 15,
};

Constants

UIX_OK
The ...
UIX_Cancel
The ...
UIX_Abort
The ...
UIX_Retry
The ...
UIX_Ignore
The ...
UIX_Yes
The ...
UIX_No
The ...
UIX_Close
The ...
UIX_Help
The ...
UIX_Try
The ...
UIX_Continue
The ...
UIX_IgnoreAll
The ...
UIX_YesToAll
The ...
UIX_NoToAll
The ...
_UIX_MsgBox_MaxRes_
The ...