pub trait GuiMessageWindow_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
    // Provided methods
    fn focused_button(&self) -> Result<i32> { ... }
    fn help_button_help_text(&self) -> Result<String> { ... }
    fn help_button_text(&self) -> Result<String> { ... }
    fn message_text(&self) -> Result<String> { ... }
    fn message_type(&self) -> Result<i32> { ... }
    fn ok_button_help_text(&self) -> Result<String> { ... }
    fn ok_button_text(&self) -> Result<String> { ... }
    fn screen_left(&self) -> Result<i32> { ... }
    fn screen_top(&self) -> Result<i32> { ... }
    fn visible(&self) -> Result<bool> { ... }
}

Provided Methods§

source

fn focused_button(&self) -> Result<i32>

source

fn help_button_help_text(&self) -> Result<String>

source

fn help_button_text(&self) -> Result<String>

source

fn message_text(&self) -> Result<String>

source

fn message_type(&self) -> Result<i32>

source

fn ok_button_help_text(&self) -> Result<String>

source

fn ok_button_text(&self) -> Result<String>

source

fn screen_left(&self) -> Result<i32>

source

fn screen_top(&self) -> Result<i32>

source

fn visible(&self) -> Result<bool>

Implementors§