Class ListBoxDescription
The description of a Web ListBox test object.
public class ListBoxDescription : FormFieldDescription, ICloneable, IDescription
- Inheritance
-
ListBoxDescription
- Implements
- Derived
- Inherited Members
Constructors
ListBoxDescription()
public ListBoxDescription()
Properties
DefaultValue
The initial text value, which is set when the object is reset.
public StringProperty DefaultValue { get; set; }
Property Value
FirstItem
The first item in the list of items in the list.
public StringProperty FirstItem { get; set; }
Property Value
IsEnabled
Indicates whether the list box is enabled.
public bool? IsEnabled { get; set; }
Property Value
- bool?
IsMultiple
Indicates whether multi-selection is available.
public bool? IsMultiple { get; set; }
Property Value
- bool?
Items
A read-only collection of all IListItem objects in the list.
public string[] Items { get; set; }
Property Value
- string[]
Remarks
When weblist items are loaded dynamically, it is possible that only a partial list of the items will be returned.
ItemsCount
The number of items in the list.
public int? ItemsCount { get; set; }
Property Value
- int?
SelectedItems
A collection of all selected items in the list.
public string[] SelectedItems { get; set; }
Property Value
- string[]
Value
This object's text value.
public StringProperty Value { get; set; }
Property Value
VisibleItemsCount
The number of visible items in the list.
public uint? VisibleItemsCount { get; set; }
Property Value
- uint?