Home | Info | Community | Development | myReactOS | Contact Us
Flags to specify how to move and resize controls when resizing their parent window.
Definition at line 454 of file window.h.
{ MOVE_LEFT = 0x1, MOVE_RIGHT = 0x2, MOVE_TOP = 0x4, MOVE_BOTTOM = 0x8, MOVE_X = MOVE_LEFT | MOVE_RIGHT, MOVE_Y = MOVE_TOP | MOVE_BOTTOM, RESIZE_X= MOVE_RIGHT, RESIZE_Y= MOVE_BOTTOM, MOVE = MOVE_X | MOVE_Y, RESIZE = RESIZE_X | RESIZE_Y };