PXV_ZoomMode Enumeration
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:PXV_ZoomMode Enumeration}} | {{#customTitle:PXV_ZoomMode Enumeration}} | ||
− | {{ | + | {{#parentPage:PXV:PXV_Enumerations|PXV_ZoomMode|enum}} |
− | + | ||
− | Specifies the | + | Specifies the zoom mode for page viewing. |
== Syntax == | == Syntax == | ||
<pre class="brush:cpp;gutter:false">enum PXV_ZoomMode | <pre class="brush:cpp;gutter:false">enum PXV_ZoomMode | ||
{ | { | ||
− | PXV_ZoomMode_Percent = 0 | + | PXV_ZoomMode_Percent = 0, |
− | PXV_ZoomMode_Actual = 1 | + | PXV_ZoomMode_Actual = 1, |
− | PXV_ZoomMode_FitWidth = 2 | + | PXV_ZoomMode_FitWidth = 2, |
− | PXV_ZoomMode_FitHeight = 3 | + | PXV_ZoomMode_FitHeight = 3, |
− | PXV_ZoomMode_FitPage = 4 | + | PXV_ZoomMode_FitPage = 4, |
− | PXV_ZoomMode_FitVisible = 5 | + | PXV_ZoomMode_FitVisible = 5, |
− | + | ||
}; | }; | ||
</pre> | </pre> | ||
Line 21: | Line 20: | ||
== Constants == | == Constants == | ||
;PXV_ZoomMode_Percent | ;PXV_ZoomMode_Percent | ||
− | : | + | :Indicates that simple zoom level, in percents, is used. |
;PXV_ZoomMode_Actual | ;PXV_ZoomMode_Actual | ||
− | : | + | :Indicates that 100% zoom level is used. |
;PXV_ZoomMode_FitWidth | ;PXV_ZoomMode_FitWidth | ||
− | : | + | :Indicates mode that fits the page width to the current width of the viewing window. |
;PXV_ZoomMode_FitHeight | ;PXV_ZoomMode_FitHeight | ||
− | : | + | :Indicates mode that fits the page height to the current height of the viewing window. |
;PXV_ZoomMode_FitPage | ;PXV_ZoomMode_FitPage | ||
− | : | + | :Indicates mode that fits the page to the current size of the viewing window. |
;PXV_ZoomMode_FitVisible | ;PXV_ZoomMode_FitVisible | ||
− | : | + | :Indicates mode that fits the width of bounding box, of all visible content on the page, to the current width of the viewing window. |
− | + | ||
− | + | ||
== See Also == | == See Also == | ||
− | + | [[PXV:IPXV_PagesView_SetZoom|IPXV_PagesView::SetZoom]], [[PXV:IPXV_PagesLayoutManager_GetNextZoom|IPXV_PagesLayoutManager::GetNextZoom]], [[PXV:IPXV_PagesLayoutManager_GetPrevZoom|IPXV_PagesLayoutManager::GetPrevZoom]], [[PXV:IPXV_PagesLayoutManager_SetZoom|IPXV_PagesLayoutManager::SetZoom]], [[PXV:IPXV_PagesLayoutManager_ZoomMode|IPXV_PagesLayoutManager::ZoomMode]], [[PXV:IPXV_Control_SetZoom|IPXV_Control::SetZoom]], [[PXV:IPXV_Control_ZoomMode|IPXV_Control::ZoomMode]] |
Latest revision as of 09:00, 4 September 2015
Specifies the zoom mode for page viewing.
Syntax
enum PXV_ZoomMode { PXV_ZoomMode_Percent = 0, PXV_ZoomMode_Actual = 1, PXV_ZoomMode_FitWidth = 2, PXV_ZoomMode_FitHeight = 3, PXV_ZoomMode_FitPage = 4, PXV_ZoomMode_FitVisible = 5, };
Constants
- PXV_ZoomMode_Percent
- Indicates that simple zoom level, in percents, is used.
- PXV_ZoomMode_Actual
- Indicates that 100% zoom level is used.
- PXV_ZoomMode_FitWidth
- Indicates mode that fits the page width to the current width of the viewing window.
- PXV_ZoomMode_FitHeight
- Indicates mode that fits the page height to the current height of the viewing window.
- PXV_ZoomMode_FitPage
- Indicates mode that fits the page to the current size of the viewing window.
- PXV_ZoomMode_FitVisible
- Indicates mode that fits the width of bounding box, of all visible content on the page, to the current width of the viewing window.
See Also
IPXV_PagesView::SetZoom, IPXV_PagesLayoutManager::GetNextZoom, IPXV_PagesLayoutManager::GetPrevZoom, IPXV_PagesLayoutManager::SetZoom, IPXV_PagesLayoutManager::ZoomMode, IPXV_Control::SetZoom, IPXV_Control::ZoomMode