DirListBox.DirListIndex Property

Definition

Gets or sets the index of the currently selected item in a DirListBox control.

public:
 property int DirListIndex { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int DirListIndex { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DirListIndex : int with get, set
Public Property DirListIndex As Integer

Property Value

An Integer that represents the index of the currently selected item.

Attributes

Remarks

Use this property to return the index of the currently selected directory. The DirListIndex property works together with the DirList[] and DirListCount properties.

The expression instance.DirList(instance.DirListIndex) returns the string for the currently selected directory.

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. 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.

Applies to

See also