IPXV_Inst::CreateString Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
Line 6: Line 6:
 
{{ToReview}}
 
{{ToReview}}
  
The method of interface of PDF-XChange Editor SDK.
+
Creates the new [[PXV:IString|IString]] object.
  
 
== Syntax ==
 
== Syntax ==
Line 14: Line 14:
 
== Parameters ==
 
== Parameters ==
 
;pInitial
 
;pInitial
:[in, defaultvalue("")]  Value of BSTR.
+
:[in, defaultvalue("")]  Pass initial string here.
 
;ppRes
 
;ppRes
:[out, retval]  Pointer to [[PXV:IString|IString]].
+
:[out, retval]  Returns pointer to a new [[PXV:IString|IString]] object.
  
 
== Return Value ==
 
== Return Value ==

Revision as of 16:49, 24 May 2015


Creates the new IString object.

Syntax

HRESULT CreateString([in, defaultvalue("")]  BSTR       pInitial,
                     [out, retval]           IString**  ppRes);

Parameters

pInitial
[in, defaultvalue("")] Pass initial string here.
ppRes
[out, retval] Returns pointer to a new IString object.

Return Value

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

See Also

IPXV_Inst