TabletDeviceCollection Clase

Definición

Contiene los objetos TabletDevice que representan los dispositivos de digitalización de un dispositivo de tableta gráfica.

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
Herencia
TabletDeviceCollection
Derivado
Implementaciones

Ejemplos

En el ejemplo siguiente se muestra la TabletDeviceCollection clase .

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

Constructores

TabletDeviceCollection()

Inicializa una nueva instancia de la clase TabletDeviceCollection.

Propiedades

Count

Obtiene el número de objetos TabletDevice que hay en la colección.

IsSynchronized

Obtiene un valor que indica si el acceso a la colección está sincronizado (es seguro para la ejecución de subprocesos).

Item[Int32]

Obtiene el objeto TabletDevice situado en el índice especificado de la colección.

SyncRoot

Obtiene un objeto que se puede utilizar para sincronizar el acceso a la colección.

Métodos

CopyTo(TabletDevice[], Int32)

Copia todos los elementos de la colección actual en la matriz unidimensional especificada, empezando en el índice indicado de la matriz de destino.

Equals(Object)

Determina si el objeto especificado es igual que el objeto actual.

(Heredado de Object)
GetHashCode()

Sirve como la función hash predeterminada.

(Heredado de Object)
GetType()

Obtiene el Type de la instancia actual.

(Heredado de Object)
MemberwiseClone()

Crea una copia superficial del Object actual.

(Heredado de Object)
ToString()

Devuelve una cadena que representa el objeto actual.

(Heredado de Object)

Implementaciones de interfaz explícitas

ICollection.CopyTo(Array, Int32)

Este miembro es compatible con .NET Framework y no se debe utilizar desde el código.

IEnumerable.GetEnumerator()

Este miembro es compatible con .NET Framework y no se debe utilizar desde el código.

Métodos de extensión

Cast<TResult>(IEnumerable)

Convierte los elementos de IEnumerable en el tipo especificado.

OfType<TResult>(IEnumerable)

Filtra los elementos de IEnumerable en función de un tipo especificado.

AsParallel(IEnumerable)

Habilita la paralelización de una consulta.

AsQueryable(IEnumerable)

Convierte una interfaz IEnumerable en IQueryable.

Se aplica a