IUIX_Inst::CreateCombo Method

From PDF XChange PDF SDK
Jump to: navigation, search
(Automatic page editing by robot)
 
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IUIX_Inst::CreateCombo Method}}
 
{{#customTitle:IUIX_Inst::CreateCombo Method}}
 +
{{#parentPage:PXV:IUIX_Inst#Methods|CreateCombo|method}}
  
The method of interface of PDF-XChange Editor SDK.
+
 
 +
Creates new object of [[PXV:IUIX_Combo|IUIX_Combo]] interface (''combo box'').
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CreateCombo([in] IUIX_Obj* pParent, [in] RECT* pRect, [in] BSTR pID, [in, optional] LONGLONG nStyle, [in, optional] IUnknown* pCustomImpl, [out, retval, optional] IUIX_Combo** ppCombo);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT CreateCombo([in]                               IUIX_Obj*     pParent,
 +
                    [in]                               RECT*         pRect,
 +
                    [in]                               BSTR         pID,
 +
                    [in, defaultvalue(0)]             LONGLONG     nStyle,
 +
                    [in, defaultvalue(NULL)]           IUnknown*     pCustomImpl,
 +
                    [out, retval, defaultvalue(NULL)] IUIX_Combo** pCombo);</pre>
  
 
== Parameters ==
 
== Parameters ==
;''pParent''
+
;pParent
:[in]  Pointer to [[PXV:IUIX_Obj|IUIX_Obj]].
+
:[in]  parent object.
;''pRect''
+
;pRect
:[in]  Pointer to RECT.
+
:[in]  dialog area where created object will be located.
;''pID''
+
;pID
:[in]  Value of BSTR.
+
:[in]  string ID of created object.
;''nStyle''
+
;nStyle
:[in, optionalValue of LONGLONG.
+
:[in, defaultvalue(0)specifies combo box style flags from [[PXV:UIX_ComboStyleFlags|UIX_ComboStyleFlags]] enumeration.
;''pCustomImpl''
+
;pCustomImpl
:[in, optional] Pointer to IUnknown*.
+
:[in, optional]   custom implementation of [[PXV:IUIX_Combo|IUIX_Combo]] interface. Set this parameter if you need to use your own interface implementation instead of default one.
;''ppCombo''
+
;pCombo
:[out, retval, optionalPointer to [[PXV:IUIX_Combo|IUIX_Combo]].
+
:[out, retval, defaultvalue(NULL)return object of [[PXV:IUIX_Combo|IUIX_Combo]] interface.
  
 
== Return Value ==
 
== Return Value ==
Returns S_OK if operation was successful or error code in other cases.
+
Returns S_OK if the operation was successful, or will return an error code if it fails.  
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IUIX_Inst|IUIX_Inst]].
+
[[PXV:IUIX_Inst|IUIX_Inst]]

Latest revision as of 17:23, 15 June 2015


Creates new object of IUIX_Combo interface (combo box).

Syntax

HRESULT CreateCombo([in]                               IUIX_Obj*     pParent,
                    [in]                               RECT*         pRect,
                    [in]                               BSTR          pID,
                    [in, defaultvalue(0)]              LONGLONG      nStyle,
                    [in, defaultvalue(NULL)]           IUnknown*     pCustomImpl,
                    [out, retval, defaultvalue(NULL)]  IUIX_Combo**  pCombo);

Parameters

pParent
[in] parent object.
pRect
[in] dialog area where created object will be located.
pID
[in] string ID of created object.
nStyle
[in, defaultvalue(0)] specifies combo box style flags from UIX_ComboStyleFlags enumeration.
pCustomImpl
[in, optional] custom implementation of IUIX_Combo interface. Set this parameter if you need to use your own interface implementation instead of default one.
pCombo
[out, retval, defaultvalue(NULL)] return object of IUIX_Combo interface.

Return Value

Returns S_OK if the operation was successful, or will return an error code if it fails.

See Also

IUIX_Inst