IVsaItems.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Item[Int32] |
Gets an item from the collection by its index value. |
Item[String] |
Gets an item from the collection by its name. |
Item[Int32]
Gets an item from the collection by its index value.
public:
property Microsoft::Vsa::IVsaItem ^ default[int] { Microsoft::Vsa::IVsaItem ^ get(int index); };
public Microsoft.Vsa.IVsaItem this[int index] { get; }
member this.Item(int) : Microsoft.Vsa.IVsaItem
Default Public ReadOnly Property Item(index As Integer) As IVsaItem
Parameters
- index
- Int32
A 0-based index of the retrievable items.
Property Value
The item at the specified index.
Applies to
Item[String]
Gets an item from the collection by its name.
public:
property Microsoft::Vsa::IVsaItem ^ default[System::String ^] { Microsoft::Vsa::IVsaItem ^ get(System::String ^ name); };
public Microsoft.Vsa.IVsaItem this[string name] { get; }
member this.Item(string) : Microsoft.Vsa.IVsaItem
Default Public ReadOnly Property Item(name As String) As IVsaItem
Parameters
- name
- String
The name of the item to retrieve from the collection.
Property Value
The item specified by name.
Applies to
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.