VScrollBarArray.GetIndex(VScrollBar) Method

Definition

Gets the index of a VScrollBar in a VScrollBarArray.

public:
 short GetIndex(System::Windows::Forms::VScrollBar ^ o);
public short GetIndex (System.Windows.Forms.VScrollBar o);
member this.GetIndex : System.Windows.Forms.VScrollBar -> int16
Public Function GetIndex (o As VScrollBar) As Short

Parameters

o
VScrollBar

A Short that specifies the position of an element of the control array.

Returns

A VScrollBar at the specified Index in the control array.

Remarks

The Item property is the default property for a control array. Therefore, the following lines of code are equivalent.

MsgBox(CStr(VScrollBarArray.Item(1).Text))  
MsgBox(CStr(VScrollBarArray(1).Text))  

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