Gets or sets the dropdown item at the specified index.

Namespace: Karamasoft.WebControls.UltimateEditor
Assembly: UltimateEditor (in UltimateEditor.dll) Version: 3.7.4186.26618

Syntax

C#
public DropDownItem this[
	int index
] { get; set; }
Visual Basic
Public Default Property Item ( _
	index As Integer _
) As DropDownItem
	Get
	Set
Visual C++
public:
property DropDownItem^ default[int index] {
	DropDownItem^ get (int index);
	void set (int index, DropDownItem^ value);
}

Parameters

index
Type: System..::..Int32
The zero-based index of the dropdown item to get or set.

Field Value

The dropdown item at the specified index.

See Also