Table of Contents

Class ComboBoxDescription

Description of a SAP GUI for Windows combo box.

Namespace: HP.LFT.SDK.SAP.GUI
Assembly: HP.LFT.SDK.dll
Syntax
public class ComboBoxDescription : ElementDescription, ICloneable, IDescription

Constructors

ComboBoxDescription()

Declaration
public ComboBoxDescription()

Properties

IsEnabled

Indicates whether the combo box can accept user input.

Declaration
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Items

The list of the items in the combo box.

Declaration
public string[] Items { get; set; }
Property Value
Type Description
string[]

ItemsCount

The number of items contained in the combo box.

Declaration
public uint? ItemsCount { get; set; }
Property Value
Type Description
uint?

SelectedItem

The selected item.

Declaration
public StringProperty SelectedItem { get; set; }
Property Value
Type Description
StringProperty

Implements

ICloneable
IDescription