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> { ... }
}