PXV_ZoomMode Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 3: Line 3:
 
{{#customTitle:PXV_ZoomMode Enumeration}}
 
{{#customTitle:PXV_ZoomMode Enumeration}}
 
{{#parentPage:PXV:PXV_Enumerations|PXV_ZoomMode|enum}}
 
{{#parentPage:PXV:PXV_Enumerations|PXV_ZoomMode|enum}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
Specifies the ...
+
Specifies the special zoom mode for pages viewing.
  
 
== Syntax ==
 
== Syntax ==
Line 23: Line 22:
 
== Constants ==
 
== Constants ==
 
;PXV_ZoomMode_Percent
 
;PXV_ZoomMode_Percent
:The ...
+
:Indicates that simple zoom level in percents is used.
 
;PXV_ZoomMode_Actual
 
;PXV_ZoomMode_Actual
:The ...
+
:Indicates that 100% zoom level is used.
 
;PXV_ZoomMode_FitWidth
 
;PXV_ZoomMode_FitWidth
:The ...
+
:Indicates mode that fits the page width to the current width of the viewing window.
 
;PXV_ZoomMode_FitHeight
 
;PXV_ZoomMode_FitHeight
:The ...
+
:Indicates mode that fits the page height to the current height of the viewing window.
 
;PXV_ZoomMode_FitPage
 
;PXV_ZoomMode_FitPage
:The ...
+
:Indicates mode that fits the page to the current size of the viewing window.
 
;PXV_ZoomMode_FitVisible
 
;PXV_ZoomMode_FitVisible
:The ...
+
:Indicates mode that fits the width of bounding box of all visible content on the page to the current width of the viewing window.
;_PXV_ZoomMode_Max_
+
:The ...
+
  
 
== 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]]
 
[[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]]

Revision as of 13:02, 29 May 2015


Specifies the special zoom mode for pages 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,
    _PXV_ZoomMode_Max_      = 6,
};

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