IXC_CopyClipboard Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IXC_CopyClipboard Enumeration}}
 
{{#customTitle:IXC_CopyClipboard Enumeration}}
{{#parentPage:PXV:IXC|IXC_CopyClipboard Enumeration|enum}}
+
{{#parentPage:PXV:IXC_Enumerations|IXC_CopyClipboard|enum}}
 
{{ToReview}}
 
{{ToReview}}
  
Specifies the data type which should be copied onto clipboard.
+
Specifies the data type that should be copied onto clipboard.
  
 
== Syntax ==
 
== Syntax ==
Line 12: Line 13:
 
     CopyClipboard_DIB            = 2,
 
     CopyClipboard_DIB            = 2,
 
     CopyClipboard_Palette        = 4,
 
     CopyClipboard_Palette        = 4,
 +
    CopyClipboard_PNG            = 8,
 
     CopyClipboard_EmptyClipboard = 4096,
 
     CopyClipboard_EmptyClipboard = 4096,
 
};
 
};
Line 18: Line 20:
 
== Constants ==
 
== Constants ==
 
;CopyClipboard_Bitmap
 
;CopyClipboard_Bitmap
:The page (or its part) will be copied onto clipboard as BITMAP.
+
:The page, or a part of the page, will be copied onto clipboard as a BITMAP.
 
;CopyClipboard_DIB
 
;CopyClipboard_DIB
:The page (or its part) will be copied onto clipboard as DIB section.
+
:The page, or a part of the page, will be copied onto clipboard as a DIB section.
 
;CopyClipboard_Palette
 
;CopyClipboard_Palette
:If this flag is used and the page has palette, this palette will be placed onto clipboard.
+
:If this flag is used and the page has a palette, it will be copied onto the clipboard.
 +
;CopyClipboard_PNG
 +
:The ...
 
;CopyClipboard_EmptyClipboard
 
;CopyClipboard_EmptyClipboard
:If this flag is set, the clipboard will be empty before copying.
+
:If this flag is set, the clipboard will be emptied before copying.
  
 
== See Also ==
 
== See Also ==
 
[[PXV:IIXC_Page_CopyToClipboard|IIXC_Page::CopyToClipboard]]
 
[[PXV:IIXC_Page_CopyToClipboard|IIXC_Page::CopyToClipboard]]

Latest revision as of 09:56, 16 March 2017


Specifies the data type that should be copied onto clipboard.

Syntax

enum IXC_CopyClipboard
{
    CopyClipboard_Bitmap         = 1,
    CopyClipboard_DIB            = 2,
    CopyClipboard_Palette        = 4,
    CopyClipboard_PNG            = 8,
    CopyClipboard_EmptyClipboard = 4096,
};

Constants

CopyClipboard_Bitmap
The page, or a part of the page, will be copied onto clipboard as a BITMAP.
CopyClipboard_DIB
The page, or a part of the page, will be copied onto clipboard as a DIB section.
CopyClipboard_Palette
If this flag is used and the page has a palette, it will be copied onto the clipboard.
CopyClipboard_PNG
The ...
CopyClipboard_EmptyClipboard
If this flag is set, the clipboard will be emptied before copying.

See Also

IIXC_Page::CopyToClipboard