pub trait GuiComboBoxControl_Impl<T: HasIDispatch = Self>: HasIDispatch<T> {
// Provided methods
fn cur_list_box_entry(&self) -> Result<SAPComponent> { ... }
fn entries(&self) -> Result<GuiCollection> { ... }
fn is_list_box_active(&self) -> Result<bool> { ... }
fn label_text(&self) -> Result<String> { ... }
fn selected(&self) -> Result<String> { ... }
fn set_selected(&self, value: String) -> Result<()> { ... }
fn text(&self) -> Result<String> { ... }
fn fire_selected(&self) -> Result<()> { ... }
}