TabletDeviceCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タブレット デバイスのデジタイザー デバイスを表す TabletDevice オブジェクトを格納します。
public ref class TabletDeviceCollection : System::Collections::ICollection
public class TabletDeviceCollection : System.Collections.ICollection
type TabletDeviceCollection = class
interface ICollection
interface IEnumerable
Public Class TabletDeviceCollection
Implements ICollection
- 継承
-
TabletDeviceCollection
- 派生
- 実装
例
次の例では、 クラスを TabletDeviceCollection 示します。
// Get the TabletDevice objects
TabletDeviceCollection myTabletDeviceCollection = Tablet.TabletDevices;
// Display the types of TabletDevices
foreach (TabletDevice td in myTabletDeviceCollection)
{
Console.WriteLine(td.Type);
}
' Get the TabletDevice objects
Dim myTabletDeviceCollection As TabletDeviceCollection = Tablet.TabletDevices
' Display the types of TabletDevices
Dim td As TabletDevice
For Each td In myTabletDeviceCollection
Console.WriteLine(td.Name)
Next
コンストラクター
TabletDeviceCollection() |
TabletDeviceCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
Count |
コレクション内の TabletDevice オブジェクト数を取得します。 |
IsSynchronized |
コレクションへのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
Item[Int32] |
コレクション内の指定したインデックス位置にある TabletDevice オブジェクトを取得します。 |
SyncRoot |
コレクションへのアクセスを同期するために使用できるオブジェクトを取得します。 |
メソッド
CopyTo(TabletDevice[], Int32) |
指定したコピー先の配列インデックスを開始位置として、指定した 1 次元配列に現在のコレクションのすべての要素をコピーします。 |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
ToString() |
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
明示的なインターフェイスの実装
ICollection.CopyTo(Array, Int32) |
このメンバーは .NET Framework をサポートします。コードから使用するためのものではありません。 |
IEnumerable.GetEnumerator() |
このメンバーは .NET Framework をサポートします。コードから使用するためのものではありません。 |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
.NET