[][src]Struct native_windows_gui::RadioButton

pub struct RadioButton { /* fields omitted */ }

A standard radio button

Methods

impl RadioButton[src]

pub fn get_checkstate(&self) -> CheckState[src]

Get the checkstate of the radio button

pub fn set_checkstate(&self, check: CheckState)[src]

Set the checkstate of the radio button. A radio button control cannot have an Indeterminate check state. If one is passed, it is evaluated as checked.

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 RadioButton[src]

Auto Trait Implementations

impl !Send for RadioButton

impl !Sync for RadioButton

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]