指定したインデックス位置にある要素を取得します。
名前空間 : System.Windows.Ink.AnalysisCore
アセンブリ : IACore (IACore.dll 内)
構文
'宣言
Public ReadOnly Property Item ( _
index As Integer _
) As InkRecognizerBase
'使用
Dim instance As InkRecognizerBaseCollection
Dim index As Integer
Dim value As InkRecognizerBase
value = instance.Item(index)
public InkRecognizerBase Item[
int index
] { get; }
public:
property InkRecognizerBase^ Item[int index] {
InkRecognizerBase^ get (int index);
}
/** @property */
public InkRecognizerBase get_Item(
int index
)
JScript では、インデックス付きプロパティはサポートされません。
パラメータ
- index
型 : System.Int32
取得する要素の 0 から始まるインデックス。
プロパティ値
型 : System.Windows.Ink.AnalysisCore.InkRecognizerBase
指定したインデックスにある要素。
解説
![]() |
---|
C# では、C# の例に示すように、コレクションの Item プロパティではなくコレクションのインデクサを使用します。 |
例
次の例では、コレクションが空ではない場合、InkRecognizerBaseCollection、theInkRecognizerCollection 内の最初の認識エンジンを取得します。この例では、コレクションが同期されているかどうかも確認します。
' Create a collection of the recognizers installed on this Tablet PC.
Dim theInkRecognizerCollection As InkRecognizerBaseCollection = _
theInkAnalyzerBase.GetInkRecognizersByPriority()
' Check if there are recognizers in the collection.
If (0 < theInkRecognizerCollection.Count) Then
' Get the first recognizer in the collection.
Dim theFirstInkRecognizer As System.Windows.Ink.AnalysisCore.InkRecognizerBase = _
theInkRecognizerCollection.Item(0)
' Check if the recognizers collection is synchronized.
If (theInkRecognizerCollection.IsSynchronized) Then
' Insert code here.
End If
End If
// Create a collection of the recognizers installed on this Tablet PC.
InkRecognizerBaseCollection theInkRecognizerCollection =
theInkAnalyzerBase.GetInkRecognizersByPriority();
// Check if there are recognizers in the collection.
if (0 < theInkRecognizerCollection.Count)
{
// Get the first recognizer in the collection.
InkRecognizerBase theFirstInkRecognizer =
theInkRecognizerCollection[0];
// Insert code here.
}
// Check if the recognizers collection is synchronized.
if (theInkRecognizerCollection.IsSynchronized)
{
// Insert code here.
}
プラットフォーム
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0
参照
参照
InkRecognizerBaseCollection クラス