IUIX_Inst::ShowPopup Method
From PDF XChange PDF SDK
m (Automatic page editing by robot) |
|||
(10 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | __NOTOC__ | ||
[[Category:Editor]] | [[Category:Editor]] | ||
{{#customTitle:IUIX_Inst::ShowPopup Method}} | {{#customTitle:IUIX_Inst::ShowPopup Method}} | ||
− | {{#parentPage:PXV:IUIX_Inst|method | + | {{#parentPage:PXV:IUIX_Inst#Methods|ShowPopup|method}} |
− | + | ||
{{ToReview}} | {{ToReview}} | ||
− | + | Show popup window with specified "content window". | |
== Syntax == | == Syntax == | ||
− | <pre class="brush:cpp;gutter:false">HRESULT ShowPopup([in] IUIX_Obj* pOwner, [in] IUIX_Obj* pContent, [in] RECT* | + | <pre class="brush:cpp;gutter:false">HRESULT ShowPopup([in] IUIX_Obj* pOwner, |
+ | [in] IUIX_Obj* pContent, | ||
+ | [in] RECT* stPos, | ||
+ | [in, defaultvalue(0)] LONG nFlags, | ||
+ | [in, defaultvalue(NULL)] IUIX_Obj* pNotifyTarget);</pre> | ||
== Parameters == | == Parameters == | ||
− | ; | + | ;pOwner |
− | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. | + | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. This window will receive all notifies from <code>pContent</code> as parent. |
− | ; | + | ;pContent |
− | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. | + | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]] with window of content of popup. Popup can work with some window inside only. Some decoration features should be specified in nFlags parameter. |
− | ; | + | ;stPos |
− | :[in] Pointer to RECT. | + | :[in] Pointer to RECT in screen coordinates, which will be used by popup to stick to it. Rules for stick specified at nFlags parameter. |
− | ; | + | ;nFlags |
− | :[in, defaultvalue(0)] | + | :[in, defaultvalue(0)] Combination of flags of [[PXV:UIX_ShowPopupFlags|UIX_ShowPopupFlags]]. |
− | ; | + | ;pNotifyTarget |
− | :[in, defaultvalue(NULL)] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. | + | :[in, defaultvalue(NULL)] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. In case of nonzero value it will receive all notifies from content window or control instead of owner. |
== Return Value == | == Return Value == | ||
Line 26: | Line 30: | ||
== See Also == | == See Also == | ||
− | + | [[PXV:IUIX_Inst|IUIX_Inst]], [[PXV:UIX_ShowPopupFlags|UIX_ShowPopupFlags]] |
Latest revision as of 02:43, 7 December 2015
Show popup window with specified "content window".
Syntax
HRESULT ShowPopup([in] IUIX_Obj* pOwner, [in] IUIX_Obj* pContent, [in] RECT* stPos, [in, defaultvalue(0)] LONG nFlags, [in, defaultvalue(NULL)] IUIX_Obj* pNotifyTarget);
Parameters
- pOwner
- [in] Pointer to IUIX_Obj. This window will receive all notifies from
pContent
as parent. - pContent
- [in] Pointer to IUIX_Obj with window of content of popup. Popup can work with some window inside only. Some decoration features should be specified in nFlags parameter.
- stPos
- [in] Pointer to RECT in screen coordinates, which will be used by popup to stick to it. Rules for stick specified at nFlags parameter.
- nFlags
- [in, defaultvalue(0)] Combination of flags of UIX_ShowPopupFlags.
- pNotifyTarget
- [in, defaultvalue(NULL)] Pointer to IUIX_Obj. In case of nonzero value it will receive all notifies from content window or control instead of owner.
Return Value
Returns S_OK if operation was successful or error code in other cases.