IBitSet::GetNumberOfSet Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 7: Line 7:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT GetNumberOfSet([in]          ULONG  nStartPos,
+
<pre class="brush:cpp;gutter:false">HRESULT GetNumberOfSet([in]          ULONG  StartPos,
                       [in]          ULONG  nEndPos,
+
                       [in]          ULONG  EndPos,
                       [out, retval]  ULONG*  nCount);</pre>
+
                       [out, retval]  ULONG*  Count);</pre>
  
 
== Parameters ==
 
== Parameters ==
;nStartPos
+
;StartPos
 
:[in]  Starting position to look for the set values.
 
:[in]  Starting position to look for the set values.
;nEndPos
+
;EndPos
 
:[in]  Ending position to look for the set values.
 
:[in]  Ending position to look for the set values.
;nCount
+
;Count
 
:[out, retval]  Number of set values, between the starting and ending position, in the bit-set.
 
:[out, retval]  Number of set values, between the starting and ending position, in the bit-set.
  

Revision as of 06:46, 12 June 2015

Gets the number of items set to a true value.

Syntax

HRESULT GetNumberOfSet([in]           ULONG   StartPos,
                       [in]           ULONG   EndPos,
                       [out, retval]  ULONG*  Count);

Parameters

StartPos
[in] Starting position to look for the set values.
EndPos
[in] Ending position to look for the set values.
Count
[out, retval] Number of set values, between the starting and ending position, in the bit-set.

Return Value

Returns S_OK if the operation was successful, otherwise an error code is returned.

See Also

IBitSet