Trait IToggleButtonGroupConcept

pub trait IToggleButtonGroupConcept: Inherits<Object> + Inherits<ToggleButtonGroupConcept> {
    // Provided methods
    fn get_current_button_index(&self) -> Result<i32, Error> { ... }
    fn set_current_button_index(&self, value: i32) -> Result<(), Error> { ... }
}
Expand description

Use a Toggle Button Group to control a collection of Toggle Buttons so that only one Toggle Button can be toggled on at a time.

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§