PXV_DocCloseFlags Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
(Label ToWrite removed)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXV_DocCloseFlags Enumeration}}
 
{{#customTitle:PXV_DocCloseFlags Enumeration}}
{{#parentPage:PXV:PXV|PXV_DocCloseFlags Enumeration|enum}}
+
{{#parentPage:PXV:PXV_Enumerations|PXV_DocCloseFlags|enum}}
{{ToWrite}}
+
 
 
{{ToReview}}
 
{{ToReview}}
  
Specifies the ...
+
Specifies additional flags for document closing.
  
 
== Syntax ==
 
== Syntax ==
 
<pre class="brush:cpp;gutter:false">enum PXV_DocCloseFlags
 
<pre class="brush:cpp;gutter:false">enum PXV_DocCloseFlags
 
{
 
{
     PXV_DocClose_AllowUI        = 1;
+
     PXV_DocClose_AllowUI        = 1,
     PXV_DocClose_AllowCancel    = 2;
+
     PXV_DocClose_AllowCancel    = 2,
     PXV_DocClose_AllowSilentSave = 4;
+
     PXV_DocClose_AllowSilentSave = 4,
    PXV_DocClose_AllowAsync      = 8;
+
 
};
 
};
 
</pre>
 
</pre>
Line 19: Line 19:
 
== Constants ==
 
== Constants ==
 
;PXV_DocClose_AllowUI
 
;PXV_DocClose_AllowUI
:The ...
+
:Allows the addional UI-messages that can be displayed for end-user during closing the document like message box that asks user about save changes of document.
 
;PXV_DocClose_AllowCancel
 
;PXV_DocClose_AllowCancel
:The ...
+
:Allows cancel of the document closing process. When it is specified then handlers of the '''e.document.beforeClose''' event of will be able to stop the document closing process.
 
;PXV_DocClose_AllowSilentSave
 
;PXV_DocClose_AllowSilentSave
:The ...
+
:When specified then all existing changes of document will be saved automatically to the source without asking the user.
;PXV_DocClose_AllowAsync
+
:The ...
+
 
+
== See Also ==
+
See also ...
+

Latest revision as of 01:08, 16 March 2016


Specifies additional flags for document closing.

Syntax

enum PXV_DocCloseFlags
{
    PXV_DocClose_AllowUI         = 1,
    PXV_DocClose_AllowCancel     = 2,
    PXV_DocClose_AllowSilentSave = 4,
};

Constants

PXV_DocClose_AllowUI
Allows the addional UI-messages that can be displayed for end-user during closing the document like message box that asks user about save changes of document.
PXV_DocClose_AllowCancel
Allows cancel of the document closing process. When it is specified then handlers of the e.document.beforeClose event of will be able to stop the document closing process.
PXV_DocClose_AllowSilentSave
When specified then all existing changes of document will be saved automatically to the source without asking the user.