TabletDeviceCollection Classe

Definição

Contém os objetos TabletDevice que representam os dispositivos digitalizadores de um tablet.

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
Herança
TabletDeviceCollection
Derivado
Implementações

Exemplos

O exemplo a seguir demonstra a TabletDeviceCollection classe .

// 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

Construtores

TabletDeviceCollection()

Inicializa uma nova instância da classe TabletDeviceCollection.

Propriedades

Count

Obtém o número de objetos TabletDevice na coleção.

IsSynchronized

Obtém um valor que indica se o acesso à coleção é sincronizado (thread-safe).

Item[Int32]

Obtém o objeto TabletDevice no índice especificado dentro da coleção.

SyncRoot

Obtém um objeto que pode ser usado para sincronizar o acesso à coleção.

Métodos

CopyTo(TabletDevice[], Int32)

Copia todos os elementos na coleção atual para a matriz unidimensional especificada, começando no índice da matriz de destino especificada.

Equals(Object)

Determina se o objeto especificado é igual ao objeto atual.

(Herdado de Object)
GetHashCode()

Serve como a função de hash padrão.

(Herdado de Object)
GetType()

Obtém o Type da instância atual.

(Herdado de Object)
MemberwiseClone()

Cria uma cópia superficial do Object atual.

(Herdado de Object)
ToString()

Retorna uma cadeia de caracteres que representa o objeto atual.

(Herdado de Object)

Implantações explícitas de interface

ICollection.CopyTo(Array, Int32)

Esse membro dá suporte ao .NET Framework e não destina-se a ser usado do seu código.

IEnumerable.GetEnumerator()

Esse membro dá suporte ao .NET Framework e não destina-se a ser usado do seu código.

Métodos de Extensão

Cast<TResult>(IEnumerable)

Converte os elementos de um IEnumerable para o tipo especificado.

OfType<TResult>(IEnumerable)

Filtra os elementos de um IEnumerable com base em um tipo especificado.

AsParallel(IEnumerable)

Habilita a paralelização de uma consulta.

AsQueryable(IEnumerable)

Converte um IEnumerable em um IQueryable.

Aplica-se a