FileListBox.Items[] Property

Definition

Gets the items that are contained in a ListBox.

Overloads

Items

Gets the items that are contained in a ListBox.

Items[Int32]

Gets the items that are contained in a ListBox.

Items

Gets the items that are contained in a ListBox.

public:
 property System::Windows::Forms::ListBox::ObjectCollection ^ Items { System::Windows::Forms::ListBox::ObjectCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Windows.Forms.ListBox.ObjectCollection Items { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items : System.Windows.Forms.ListBox.ObjectCollection
Public ReadOnly Property Items As ListBox.ObjectCollection

Property Value

A ListBox.ObjectCollection representing the items in the DirListBox.

Attributes

Remarks

This property should not be used for the DirListBox control; trying to add or remove directories from the collection could cause an exception. It is provided only because the DirListBox control inherits from ListBox.

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

See also

Applies to

Items[Int32]

Gets the items that are contained in a ListBox.

public:
 property System::String ^ Items[int] { System::String ^ get(int Index); };
[System.ComponentModel.Browsable(false)]
public string Items[int Index] { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Items(int) : string
Public ReadOnly Property Items(Index As Integer) As String

Parameters

Index
Int32

An Integer representing the index of the item.

Property Value

A ListBox.ObjectCollection that represents the items in the DirListBox.

Attributes

Remarks

This property should not be used for the DirListBox control; trying to add or remove directories from the collection could cause an exception. It is provided only because the DirListBox control inherits from ListBox.

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

See also

Applies to