LAnnotationWindow::CreateWnd

#include "ltwrappr.h"

HWND LAnnotationWindow::CreateWnd(hWndParent, nID=0, dwStyle=WS_VISIBLE|L_BS_CENTER|L_BS_PROCESSKEYBOARD, x=0, y=0, nCx=200, nCy=200)

HWND hWndParent;

/* handle to the parent window */

L_INT nID;

/* the control's id */

DWORD dwStyle;

/* the control's style */

L_INT x;

/* x position for the annotation bitmap window */

L_INT y;

/* y position for the annotation bitmap window */

L_INT nCx;

/* width of the annotation bitmap window */

L_INT nCy;

/* height of the annotation bitmap window */

Creates the annotation bitmap window control using the specified parameters. This function is available in the Document/Medical Toolkits.

Parameter

Description

hWndParent

Handle to the parent window.

nID

The control's id.

dwStyle

The control's style. Apply any combination of window styles and LEAD window styles. For more information on Windows styles, refer to your compiler’s help file. For more information on LEAD window styles, refer to Bitmap Window LEAD specific styles.

x

X coordinate of the origin of the annotation bitmap window.

y

Y coordinate of the origin of the annotation bitmap window.

nCx

The width of the annotation bitmap window.

nCy

The height of the annotation bitmap window.

Returns

The window handle of the created window if the function was successful, otherwise NULL.

Comments

This function causes the class object to create the control window using the specified parameters.

It will also initialize the annotation automation engine..

This will fill in the m_hWnd data member with the handle to the new window.

If you call this function for a class object that already has a created window, the function will simply return m_hWnd.

Required DLLs and Libraries

LTANN
LTDIS
LTDLG
LTEFX
LTFIL
LTIMG
LTISI
LTSCR
LTTWN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

Class Members

Topics:

Annotation Functions: Implementing Automation

 

Implementing Annotations

 

Automated User Interface for Annotations

 

Displaying and Manipulating Annotation Objects

Example

L_VOID MyFunction(HWND hParentWnd)
{
    // this will call the constructor and will initialize the bitmap window with the specified parameters.

    LAnnotationWindow MyLAnnotationWindow;
    HWND hWnd=MyLAnnotationWindow.CreateWnd(hParentWnd,15,WS_VISIBLE,0,0,300,400);

     if(hWnd!=NULL)
    {
         /*the function was successful */
    }
    else
    {
        /* there is an error */
    }
}