Trait winsafe::prelude::GuiChild

source ·
pub trait GuiChild: GuiWindow {
    // Required method
    fn ctrl_id(&self) -> u16;
}
Available on crate features kernel and gui only.
Expand description

Any child window.

Prefer importing this trait through the prelude:

use winsafe::prelude::*;

Required Methods§

source

fn ctrl_id(&self) -> u16

Returns the control ID, which is defined at control creation.

The control ID should be unique within a parent.

Implementors§