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  Item,
+
<pre class="brush:cpp;gutter:false">HRESULT Find([in]          BSTR  sItem,
             [out, retval]  LONG*  Index);</pre>
+
             [out, retval]  LONG*  nIndex);</pre>
  
 
== Parameters ==
 
== Parameters ==
;Item
+
;sItem
 
:[in]  Item that needs to be found.
 
:[in]  Item that needs to be found.
;Index
+
;nIndex
 
:[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 04:43, 15 June 2015


Finds item in the unique strings list.

Syntax

HRESULT Find([in]           BSTR   sItem,
             [out, retval]  LONG*  nIndex);

Parameters

sItem
[in] Item that needs to be found.
nIndex
[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