ButtonArray.Item[Int16] Property

Definition

Gets a specific element of a ButtonArray by index. Read-only.

public:
 property System::Windows::Forms::Button ^ default[short] { System::Windows::Forms::Button ^ get(short Index); };
public System.Windows.Forms.Button this[short Index] { get; }
member this.Item(int16) : System.Windows.Forms.Button
Default Public ReadOnly Property Item(Index As Short) As Button

Parameters

Index
Int16

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

Property Value

A Button 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(ButtonArray.Item(1).Text))  
MsgBox(CStr(ButtonArray(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