IPXC_Document::EnumFonts Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
Line 3: Line 3:
 
{{#customTitle:IPXC_Document::EnumFonts Method}}
 
{{#customTitle:IPXC_Document::EnumFonts Method}}
 
{{#parentPage:PXV:IPXC_Document#Methods|EnumFonts|method}}
 
{{#parentPage:PXV:IPXC_Document#Methods|EnumFonts|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Enumerates through the fonts of the selected pages.
  
 
== Syntax ==
 
== Syntax ==
Line 16: Line 15:
 
== Parameters ==
 
== Parameters ==
 
;pCallback
 
;pCallback
:[in]  Pointer to [[PXV:IPXC_FontEnumCallback|IPXC_FontEnumCallback]].
+
:[in]  Pointer to [[PXV:IPXC_FontEnumCallback|IPXC_FontEnumCallback]] containing the callback that will be called for each new font.
 
;nFirstPage
 
;nFirstPage
:[in, defaultvalue(0)]  Value of ULONG.
+
:[in, defaultvalue(0)]  Value of ULONG containing the first page in range.
 
;nLastPage
 
;nLastPage
:[in, defaultvalue(-1)]  Value of ULONG.
+
:[in, defaultvalue(-1)]  Value of ULONG containing the last page in range.
 
;pProgress
 
;pProgress
:[in, defaultvalue(NULL)]  Pointer to [[PXV:IProgressMon|IProgressMon]].
+
:[in, defaultvalue(NULL)]  Pointer to [[PXV:IProgressMon|IProgressMon]] containing the custom progress.
  
 
== Return Value ==
 
== Return Value ==

Latest revision as of 03:35, 13 December 2016


Enumerates through the fonts of the selected pages.

Syntax

HRESULT EnumFonts([in]                      IPXC_FontEnumCallback*  pCallback,
                  [in, defaultvalue(0)]     ULONG                   nFirstPage,
                  [in, defaultvalue(-1)]    ULONG                   nLastPage,
                  [in, defaultvalue(NULL)]  IProgressMon*           pProgress);

Parameters

pCallback
[in] Pointer to IPXC_FontEnumCallback containing the callback that will be called for each new font.
nFirstPage
[in, defaultvalue(0)] Value of ULONG containing the first page in range.
nLastPage
[in, defaultvalue(-1)] Value of ULONG containing the last page in range.
pProgress
[in, defaultvalue(NULL)] Pointer to IProgressMon containing the custom progress.

Return Value

Returns S_OK if operation was successful or error code in other cases.

See Also

IPXC_Document