|
int nVertArrange, int zOrder, CWnd* pWnd, int row, int col, int nWidth, int nHeight, int nArrange=tps_horz_center|tps_vert_center, BOOL bAutoDelete=FALSE); |
nVertArrange |
Defines in which pane this control should be inserted. Can be tps_above or tps_below - above all standard elements or below them. | ||||||||||||
zOrder |
Defines the tab order of the extra control. '0' means it should be the first tab item. Caution: Do not assign the same value twice, and increase in 1-steps. | ||||||||||||
pWnd |
Contains the CWnd pointer to the window to be inserted. This CWnd must already have a Windows window attached to it. (The width and height of the HWND belonging to pWnd defines the actual width and height of the item). | ||||||||||||
row,col |
Defines the position to place the control. Do not assign the same position twice. | ||||||||||||
nWidth,nHeight |
Defines the space to be reserved for this control. This can be more than the size of the control (see pWnd and nArrange). | ||||||||||||
nArrange |
This value defines how the control is aligned. Can be one of the following values: (Combine a tps_horz_xxx style with a tps_vert_xxx style)
The alignment is relative to the space which is reserved for this control using 'nWidth' and 'nHeight' | ||||||||||||
bAutoDelete |
If TRUE, the 'pWnd' object is deleted by the destructor of the CTreePropertyPage object. If FALSE, you must delete it manually. |