IJSVsaItems.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.
Gets an item from the collection by its index value.
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::JScript::Vsa::IJSVsaItem ^ default[int] { Microsoft::JScript::Vsa::IJSVsaItem ^ get(int index); };
public Microsoft.JScript.Vsa.IJSVsaItem this[int index] { get; }
member this.Item(int) : Microsoft.JScript.Vsa.IJSVsaItem
Default Public ReadOnly Property Item(index As Integer) As IJSVsaItem
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::JScript::Vsa::IJSVsaItem ^ default[System::String ^] { Microsoft::JScript::Vsa::IJSVsaItem ^ get(System::String ^ name); };
public Microsoft.JScript.Vsa.IJSVsaItem this[string name] { get; }
member this.Item(string) : Microsoft.JScript.Vsa.IJSVsaItem
Default Public ReadOnly Property Item(name As String) As IJSVsaItem
Parameters
- name
- String
The name of the item to retrieve from the collection.
Property Value
The item specified by name.