Home
Previous NextName
EM_PM_SetParentWnd
Synopsis
int __cdecl EM_PM_SetParentWnd(char* pPopTitle, char* pParentTitle);
Description
This set the CPMLIP window in your view window.
Parameter
pTopTitle: Input, title of top window.
pParentTitle: Input, title of top window's child window which will be CPMLIP window's parent window.
Example
char* pPopTitle = "Demovc(Cross Platform Multiple Layer Image Process SDK)";
char* pParentTitle = "MyView";
m_pMainWnd->SetWindowText(pPopTitle );
pMyView->SetWindowText(pParentTitle);
EM_SetParentWnd(pPopTitle ,pParentTitle);