pub trait GuiCheckBox_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
Show 14 methods // Provided methods fn color_index(&self) -> Result<i32> { ... } fn color_intensified(&self) -> Result<i32> { ... } fn color_inverse(&self) -> Result<bool> { ... } fn flushing(&self) -> Result<bool> { ... } fn is_left_label(&self) -> Result<bool> { ... } fn is_list_element(&self) -> Result<bool> { ... } fn is_right_label(&self) -> Result<bool> { ... } fn left_label(&self) -> Result<SAPComponent> { ... } fn right_label(&self) -> Result<SAPComponent> { ... } fn row_text(&self) -> Result<String> { ... } fn selected(&self) -> Result<bool> { ... } fn set_selected(&self, value: bool) -> Result<()> { ... } fn get_list_property(&self, p0: String) -> Result<String> { ... } fn get_list_property_non_rec(&self, p0: String) -> Result<String> { ... }
}

Provided Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

fn left_label(&self) -> Result<SAPComponent>

source

fn right_label(&self) -> Result<SAPComponent>

source

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

source

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

source

fn set_selected(&self, value: bool) -> Result<()>

source

fn get_list_property(&self, p0: String) -> Result<String>

source

fn get_list_property_non_rec(&self, p0: String) -> Result<String>

Implementors§