UIX_MsgBoxResult Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 10: Line 10:
 
<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>

Revision as of 11:12, 8 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 ...

See Also

See also ...