TabletDeviceCollection 类

定义

包含表示 Tablet 设备的数字化仪设备的 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)

从指定的目标数组索引处开始,将当前集合中的所有元素复制到指定的一维数组中。

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

适用于