Tablets.TabletsEnumerator Class

An implementation of the IEnumerator interface that supports iterating over a Tablets collection.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
<PermissionSetAttribute(SecurityAction.InheritanceDemand, Name := "FullTrust")> _
Public Class TabletsEnumerator _
    Implements IEnumerator
'Usage
Dim instance As Tablets.TabletsEnumerator
[PermissionSetAttribute(SecurityAction.InheritanceDemand, Name = "FullTrust")]
public class TabletsEnumerator : IEnumerator
[PermissionSetAttribute(SecurityAction::InheritanceDemand, Name = L"FullTrust")]
public ref class TabletsEnumerator : IEnumerator
public class TabletsEnumerator implements IEnumerator

Examples

This example uses the IEnumerator for the Tablets collection to iterate over the Tablets collection, allTablets, and populate the ListBox object listBoxTablets with the names of each tablet device that is attached to the system.

' Calling the constructor automatically fills the  
' Tablets collection with the available Tablet objects. 
Dim allTablets As Tablets = New Tablets()

' clear the list box 
Me.listBoxTablets.Items.Clear()

' populate the list box with the name of each tablet 
' version using GetEnumerator() 
Dim theTabletsEnumerator As IEnumerator = allTablets.GetEnumerator()
While (theTabletsEnumerator.MoveNext())
    Dim T As Tablet = theTabletsEnumerator.Current
    Me.listBoxTablets.Items.Add(T.Name)
End While
// Calling the constructor automatically fills the  
// Tablets collection with the available Tablet objects.
Tablets allTablets = new Tablets();

// clear the list box 
this.listBoxTablets.Items.Clear();

// populate the list box with the name of each tablet 
// version using GetEnumerator()
IEnumerator theTabletsEnumerator = allTablets.GetEnumerator();
while (theTabletsEnumerator.MoveNext())
{
    Tablet T = (Tablet)theTabletsEnumerator.Current;
    this.listBoxTablets.Items.Add(T.Name);
}

Inheritance Hierarchy

System.Object
  Microsoft.Ink.Tablets.TabletsEnumerator

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

Tablets.TabletsEnumerator Members

Microsoft.Ink Namespace

Tablets