IUIX_Combo::Edit Property

From PDF XChange PDF SDK
Jump to: navigation, search
Line 4: Line 4:
 
{{ToReview}}
 
{{ToReview}}
  
'''Edit''' property gets [[PXV:IUIX_Edit|''edit'']] object that delivers additional functionality of ''manipulating current text'' in the combo box. See [[PXV:IUIX_Edit|IUIX_Edit interface]] documentation for details.
+
'''Edit''' property gets [[PXV:IUIX_Edit|''edit'']] object that delivers additional functionality of ''manipulating current text'' in the combo box. See [[PXV:IUIX_Edit|IUIX_Edit]] interface documentation for details.
  
 
== Syntax ==
 
== Syntax ==
Line 11: Line 11:
  
 
== Remarks ==
 
== Remarks ==
Note, that ''get_Edit(..)'' returns object of ''IUIX_Obj'' interface (not ''IUIX_Edit'' inteface). Use _QueryImpl(..) to query implementation of [[PXV:IUIX_Edit|IUIX_Edit]] from [[PXV:IUIX_Obj|IUIX_Obj]].
+
Note, that <code>get_Edit(..)</code> returns object of <code>IUIX_Obj</code> interface (not <code>IUIX_Edit</code> inteface). Use <code>[[PXV:IUIX_Obj_QueryImpl|QueryImpl]]</code> method to query implementation of <code>IUIX_Edit</code> from <code>IUIX_Obj</code>.
<pre class="brush:cpp;gutter:false">
+
 
CComPtr<IUIX_Obj> pObj;
+
...
+
CComPtr<IUIX_Edit> pEdt;
+
_QueryImpl(pObj, pEdt);
+
</pre>
+
 
== See Also ==
 
== See Also ==
 
See also [[PXV:IUIX_Combo|IUIX_Combo]], [[PXV:IUIX_Edit|IUIX_Edit]].
 
See also [[PXV:IUIX_Combo|IUIX_Combo]], [[PXV:IUIX_Edit|IUIX_Edit]].

Revision as of 06:39, 19 May 2015


Edit property gets edit object that delivers additional functionality of manipulating current text in the combo box. See IUIX_Edit interface documentation for details.

Syntax

HRESULT get_Edit([out, retval]  IUIX_Obj**  ppEdit);

Remarks

Note, that get_Edit(..) returns object of IUIX_Obj interface (not IUIX_Edit inteface). Use QueryImpl method to query implementation of IUIX_Edit from IUIX_Obj.

See Also

See also IUIX_Combo, IUIX_Edit.