[][src]Struct native_windows_gui::TextBox

pub struct TextBox { /* fields omitted */ }

A multi line textinput control

Methods

impl TextBox[src]

pub fn set_readonly(&self, readonly: bool)[src]

Set or unset the readonly status on the control

pub fn get_readonly(&self) -> bool[src]

Return true if the user cannot edit the content of the control or false if the user can

pub fn set_limit(&self, limit: u32)[src]

Set the maximum number of characters that the control can hold

pub fn get_limit(&self) -> u32[src]

Return the maximum number of characters that the control can hold

pub fn get_text(&self) -> String[src]

pub fn set_text<'a>(&self, text: &'a str)[src]

pub fn get_visibility(&self) -> bool[src]

pub fn set_visibility(&self, visible: bool)[src]

pub fn get_position(&self) -> (i32, i32)[src]

pub fn set_position(&self, x: i32, y: i32)[src]

pub fn get_size(&self) -> (u32, u32)[src]

pub fn set_size(&self, w: u32, h: u32)[src]

pub fn get_enabled(&self) -> bool[src]

pub fn set_enabled(&self, e: bool)[src]

Trait Implementations

impl Control for TextBox[src]

Auto Trait Implementations

impl !Send for TextBox

impl !Sync for TextBox

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]