Struct winsafe::gui::Edit[][src]

pub struct Edit(_);
Expand description

Native edit control.

Implements Child trait.

Implementations

Instantiates a new Edit object, to be created on the parent window with HWND::CreateWindowEx.

Instantiates a new Edit object, to be loaded from a dialog resource with HWND::GetDlgItem.

Returns the underlying handle for this control.

Note: the handle is initially null, receiving an actual value only after the control is physically created, what usually happens right before WM_CREATE or WM_INITDIALOG events.

Returns the control ID.

Focuses the control by sending a wm::NextDlgCtl message.

Exposes the subclass events. If at least one event exists, the control will be subclassed.

Note: Subclassing may impact performance, use with care.

Panics

Panics if the control or the parent window are already created. Events must be set before control and parent window creation.

Exposes the control events.

These event methods are just proxies to the WindowEvents of the parent window, who is the real responsible for the child event handling.

Panics

Panics if the control or the parent window are already created. Events must be set before control and parent window creation.

Sets the selection range of the text by sending an em::SetSel message.

Examples

Selecting all text in the control:

use winsafe::gui;

let my_edit: gui::Edit; // initialized somewhere

my_edit.set_selection(Some(0), None);

Clearing the selection:

use winsafe::gui;

let my_edit: gui::Edit; // initialized somewhere

my_edit.set_selection(None, None);

Sets the text in the control by calling SetWindowText.

Examples

use winsafe::gui;

let my_edit: gui::Edit; // initialized somewhere

my_edit.set_text("This my text")?;

Retrieves the text in the control by calling HWND::GetWindowText.

use winsafe::gui;

let my_edit: gui::Edit; // initialized somewhere

println!("The text is: {}", my_edit.text()?);

Trait Implementations

Returns a reference to the HWND of the child control.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.