IUIX_Inst::ShowPopup Method
From PDF XChange PDF SDK
Line 3: | Line 3: | ||
{{#customTitle:IUIX_Inst::ShowPopup Method}} | {{#customTitle:IUIX_Inst::ShowPopup Method}} | ||
{{#parentPage:PXV:IUIX_Inst#Methods|ShowPopup|method}} | {{#parentPage:PXV:IUIX_Inst#Methods|ShowPopup|method}} | ||
− | |||
{{ToReview}} | {{ToReview}} | ||
− | Show popup window with | + | Show popup window with specified "content window". |
== Syntax == | == Syntax == | ||
Line 19: | Line 18: | ||
:[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. This window will receive all notifies from <code>pContent</code> as parent. | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]]. This window will receive all notifies from <code>pContent</code> as parent. | ||
;pContent | ;pContent | ||
− | :[in] Pointer to [[PXV:IUIX_Obj|IUIX_Obj]] with window of content of popup. Popup can work with some window inside only. | + | :[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 | ;stPos | ||
− | :[in] Pointer to RECT, which will be used by popup to stick to it. | + | :[in] Pointer to RECT, which will be used by popup to stick to it. Rules for stick specified at nFlags parameter. |
;nFlags | ;nFlags | ||
:[in, defaultvalue(0)] Combination of flags of [[PXV:UIX_ShowPopupFlags|UIX_ShowPopupFlags]]. | :[in, defaultvalue(0)] Combination of flags of [[PXV:UIX_ShowPopupFlags|UIX_ShowPopupFlags]]. |
Revision as of 01:47, 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, 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.