findComboBox method
Implementation
GuiComboBox? findComboBox(String id, {bool raise = true}) {
return _findGeneric<GuiComboBox>(
id,
(s) => GuiComboBox(s),
raise,
expectedSapType: GuiComponentType.guiComboBox.value, // 34
);
}
GuiComboBox? findComboBox(String id, {bool raise = true}) {
return _findGeneric<GuiComboBox>(
id,
(s) => GuiComboBox(s),
raise,
expectedSapType: GuiComponentType.guiComboBox.value, // 34
);
}