PXV_ZoomMode Enumeration

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:PXV_ZoomMode Enumeration}}
 
{{#customTitle:PXV_ZoomMode Enumeration}}
{{#parentPage:PXV:PXV_Enumerations|PXV_ZoomMode Enumeration|enum}}
+
{{#parentPage:PXV:PXV_Enumerations|PXV_ZoomMode|enum}}
{{ToWrite}}
+
{{ToReview}}
+
  
Specifies the ...
+
Specifies the zoom mode for page viewing.
  
 
== Syntax ==
 
== Syntax ==
Line 17: Line 15:
 
     PXV_ZoomMode_FitPage    = 4,
 
     PXV_ZoomMode_FitPage    = 4,
 
     PXV_ZoomMode_FitVisible = 5,
 
     PXV_ZoomMode_FitVisible = 5,
    _PXV_ZoomMode_Max_      = 6,
 
 
};
 
};
 
</pre>
 
</pre>
Line 23: Line 20:
 
== 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]]

Latest revision as of 10: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