IBitSet::GetNumberOfSet Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 3: Line 3:
 
{{#customTitle:IBitSet::GetNumberOfSet Method}}
 
{{#customTitle:IBitSet::GetNumberOfSet Method}}
 
{{#parentPage:PXV:IBitSet#Methods|GetNumberOfSet|method}}
 
{{#parentPage:PXV:IBitSet#Methods|GetNumberOfSet|method}}
{{ToWrite}}
 
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Gets number of items with ''true'' values.
  
 
== Syntax ==
 
== Syntax ==
Line 15: Line 14:
 
== Parameters ==
 
== Parameters ==
 
;nStartPos
 
;nStartPos
:[in]  Value of ULONG.
+
:[in]  Starting position to look for set values.
 
;nEndPos
 
;nEndPos
:[in]  Value of ULONG.
+
:[in]  Ending position to look for set values.
 
;pCount
 
;pCount
:[out, retval]  Pointer to ULONG.
+
:[out, retval]  Number of set values between starting and ending position in the bit set.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 07:38, 25 May 2015


Gets number of items with true values.

Syntax

HRESULT GetNumberOfSet([in]           ULONG   nStartPos,
                       [in]           ULONG   nEndPos,
                       [out, retval]  ULONG*  pCount);

Parameters

nStartPos
[in] Starting position to look for set values.
nEndPos
[in] Ending position to look for set values.
pCount
[out, retval] Number of set values between starting and ending position in the bit set.

Return Value

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

See Also

IBitSet