Struct winapi::winuser::WINDOWPOS [] [src]

pub struct WINDOWPOS {
    pub hwnd: HWND,
    pub hwndInsertAfter: HWND,
    pub x: c_int,
    pub y: c_int,
    pub cx: c_int,
    pub cy: c_int,
    pub flags: UINT,
}

lParam of WM_WINDOWPOSCHANGING, WM_WINDOWPOSCHANGED

Fields

hwnd
hwndInsertAfter

hwnd or HWND_BOTTOM, HWND_NOTOPMOST, HWND_TOP, HWND_TOPMOST

x
y
cx
cy
flags

SWP_*

Trait Implementations

Derived Implementations

impl Debug for WINDOWPOS

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for WINDOWPOS

impl Clone for WINDOWPOS

fn clone(&self) -> WINDOWPOS

fn clone_from(&mut self, source: &Self)