IUniqueStrings::Find Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
Line 8: Line 8:
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT Find([in]          BSTR  sItem,
+
<pre class="brush:cpp;gutter:false">HRESULT Find([in]          BSTR  Item,
             [out, retval]  LONG*  nIndex);</pre>
+
             [out, retval]  LONG*  Index);</pre>
  
 
== Parameters ==
 
== Parameters ==
;sItem
+
;Item
 
:[in]  Item that needs to be found.
 
:[in]  Item that needs to be found.
;nIndex
+
;Index
 
:[out, retval]  Resulting index of the item in the unique strings list.
 
:[out, retval]  Resulting index of the item in the unique strings list.
  

Revision as of 08:00, 12 June 2015


Finds item in the unique strings list.

Syntax

HRESULT Find([in]           BSTR   Item,
             [out, retval]  LONG*  Index);

Parameters

Item
[in] Item that needs to be found.
Index
[out, retval] Resulting index of the item in the unique strings list.

Return Value

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

See Also

IUniqueStrings