#include "Ltwrappr.h"
static L_INT LRasterPaintWindow::SetToolbarPosition(lpptPos, dwFlags = TOOLBAR_POSITION_TOP| TOOLBAR_POSITION_LEFT)
LPPOINT lpptPos; |
pointer to a structure |
L_UINT32 dwFlags; |
position flags |
Sets the toolbar window position.
| Parameter | Description | |
| lpptPos | Pointer to a POINT structure that contains values used to align the toolbar. The coordinates are with respect to the screen. | |
| dwFlags | Set of flags that will indicate how the toolbar will be aligned. Possible values are: | |
| Horizontal alignment flags: | ||
| Value | Meaning | |
| TOOLBAR_POSITION_LEFT | The specified point x will become the left of the toolbar window. | |
| TOOLBAR_POSITION_RIGHT | The specified point x will become the right of the toolbar window. | |
| Vertical alignment flags: | ||
| Value | Meaning | |
| TOOLBAR_POSITION_TOP | The specified point y will become the top of the toolbar window. | |
| TOOLBAR_POSITION_BOTTOM | The specified point y will become the bottom of the toolbar window. | |
| The values from each category are combined by using the bitwise OR operator (|). | ||
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Required DLLs and Libraries
LTPNT For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
Functions: |
LRasterPaintWindow::CreateToolbar, LRasterPaintWindow::FreeToolbar, Class Members |
For an example, refer to LRasterPaintWindow::CreateToolbar.