Share via


AnalysisAlternateBaseCollection.Item Property

Gets the AnalysisAlternateBase object at the specified index within the AnalysisAlternateBaseCollection.

Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in iacore.dll)

Syntax

'Declaration
Public ReadOnly Default Property Item ( _
    index As Integer _
) As AnalysisAlternateBase
'Usage
Dim instance As AnalysisAlternateBaseCollection
Dim index As Integer
Dim value As AnalysisAlternateBase

value = instance(index)
public AnalysisAlternateBase this [
    int index
] { get; }
public:
property AnalysisAlternateBase^ default [int] {
    AnalysisAlternateBase^ get (int index);
}
/** @property */
public AnalysisAlternateBase get_Item (int index)
Not applicable.

Parameters

Property Value

The AnalysisAlternateBase object at the specified index within the AnalysisAlternateBaseCollection.

Remarks

You can gain access to the Item property by using the collection's indexer as shown in the following example.

Example

The following example gets the first node in a AnalysisAlternateBaseCollection, alternates.

Dim firstAlternate As AnalysisAlternateBase = alternates(0)
AnalysisAlternateBase firstAlternate = alternates[0];

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

AnalysisAlternateBaseCollection Class
AnalysisAlternateBaseCollection Members
System.Windows.Ink.AnalysisCore Namespace