Sets the toolbar window position.
#include "Ltwrappr.h"
static L_INT LRasterPaintWindow::SetToolbarPosition(lpptPos, dwFlags = TOOLBAR_POSITION_TOP| TOOLBAR_POSITION_LEFT)
Pointer to a POINT structure that contains values used to align the toolbar. The coordinates are with respect to the screen.
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 ( | ).
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
For an example, refer to LRasterPaintWindow::CreateToolbar.