Class GuiComboBox
Wraps a SAP GUI drop-down/combo-box (GuiComboBox).
public class GuiComboBox : GuiComponent
- Inheritance
-
GuiComboBox
- Inherited Members
Properties
Entries
Returns all entries in the combo box as (Key, Value) pairs.
public IReadOnlyList<(string Key, string Value)> Entries { get; }
Property Value
IsReadOnly
Returns true if the combo box does not allow user input.
public bool IsReadOnly { get; }
Property Value
Key
Gets or sets the selected key (not the display text).
public string Key { get; set; }
Property Value
ShowKey
Returns true if the combo box displays the key rather than the description text in its visible area.
public bool ShowKey { get; }
Property Value
Value
The displayed text of the currently selected entry.
public string Value { get; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.