IXC_PageBlockLockFlags Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
Line 2: | Line 2: | ||
{{#customTitle:IXC_PageBlockLockFlags Enumeration}} | {{#customTitle:IXC_PageBlockLockFlags Enumeration}} | ||
{{#parentPage:PXV:IXC|IXC_PageBlockLockFlags Enumeration|enum}} | {{#parentPage:PXV:IXC|IXC_PageBlockLockFlags Enumeration|enum}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
Line 10: | Line 9: | ||
<pre class="brush:cpp;gutter:false">enum IXC_PageBlockLockFlags | <pre class="brush:cpp;gutter:false">enum IXC_PageBlockLockFlags | ||
{ | { | ||
− | PageBlock_ModeRead = 1 | + | PageBlock_ModeRead = 1, |
− | PageBlock_ModeWrite = 2 | + | PageBlock_ModeWrite = 2, |
− | PageBlock_ModeRW = 3 | + | PageBlock_ModeRW = 3, |
− | PageBlock_UserBuf = 4 | + | PageBlock_UserBuf = 4, |
}; | }; | ||
</pre> | </pre> | ||
Line 28: | Line 27: | ||
== See Also == | == See Also == | ||
− |
Revision as of 11:04, 8 May 2015
Specifies that a portion of the page is locked.
Syntax
enum IXC_PageBlockLockFlags { PageBlock_ModeRead = 1, PageBlock_ModeWrite = 2, PageBlock_ModeRW = 3, PageBlock_UserBuf = 4, };
Constants
- PageBlock_ModeRead
- Specifies that a portion of the page is locked for reading.
- PageBlock_ModeWrite
- Specifies that a portion of the page is locked for writing.
- PageBlock_ModeRW
- Specifies that a portion of the page is locked for reading and writing.
- PageBlock_UserBuf
- Specifies that the buffer used for reading or writing pixel data is allocated by the user. If this flag is set, then the blockData parameter serves as an input parameter (and possibly as an output parameter). If this flag is cleared, then the blockData parameter serves only as an output parameter.