LVectorWindow::LVectorWindow

Summary

Constructs and initializes the different member variables of the LVectorWindow object.

Syntax

#include "ltwrappr.h"

LVectorWindow::LVectorWindow(L_VOID)

LVectorWindow::LVectorWindow(hWndParent, nID, dwStyle, x, y, nCx, nCy)

Parameters

HWND hWndParent

Handle of the parent window.

L_INT nID

The controls ID.

DWORD dwStyle

Specifies the control's style. Apply any combination of Window styles and LEAD window styles. For more information on Windows styles, refer to your compilers help file. For more information on LEAD window styles, refer to Window styles

L_INT x

The starting x position.

L_INT y

The starting y position.

L_INT nCx

The width of the vector window.

L_INT nCy

The height of the vector window.

Returns

None

Comments

LVectorWindow::LVectorWindow () is a constructor for the LVectorWindow object.

LVectorWindow::LVectorWindow (hWndParent, nID, dwStyle, x, y, nCX, nCY) creates the vector window control using the specified options. This will fill in the m_hWnd data member with the handle to the new window.

Required DLLs and Libraries

See Also

Functions

Example

// This is an example for LVectorWindow::LVectorWindow(): 
 
L_INT LVectorWindow__LVectorWindowExample_1() 
{ 
   LVectorWindow myVectorWindow; 
   //destructor called when out of scope 
 
   return SUCCESS; 
} 
 
// This is an example for LVectorWindow:: LVectorWindow (hWndParent, nID, dwStyle, x, y, nCX, nCY) 
 
L_INT LVectorWindow__LVectorWindowExample_2(HWND hWndParent) 
{ 
 
   LVectorWindow myVectorWindow(hWndParent,15,WS_VISIBLE,0,0,100,100); 
 
   return SUCCESS; 
} 
Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.