Table of Contents

Class GuiComboBox

Namespace
SapGui.Wrapper
Assembly
SapGui.Wrapper.dll

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

IReadOnlyList<(string Key, string Value)>

IsReadOnly

Returns true if the combo box does not allow user input.

public bool IsReadOnly { get; }

Property Value

bool

Key

Gets or sets the selected key (not the display text).

public string Key { get; set; }

Property Value

string

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

bool

Value

The displayed text of the currently selected entry.

public string Value { get; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.