NWHWND nwCreateEditWindow( lines, *caption, style, x, y, w, h, hWndParent ) Sint32 lines Sint8 *caption Sint32 style Sint32 x Sint32 y Sint32 w Sint32 h NWHWND hWndParent
lines | テキストの最大行数 |
caption | ウィンドウ名(キャプション)文字列 |
style | ウィンドウスタイル |
x,y | クライアント領域の左上座標 |
w,h | クライアント領域の幅と高さ |
hWndParent | 親ウィンドウハンドル |
成功 | エディットウィンドウのハンドル |
失敗 | NULL |
NWHWND hWnd; hWnd = nwCreateEditWindow(500, "Edit Window", NWD_WS_CAPTION | NWD_WS_CONTROL | NWD_WS_BORDER | NWD_WS_SHADING, 50, 50, 150, 100, NULL);