
Visual Basic
C#
Managed Extensions for C++
C++/CLI
Page enumerator class is used for ImGearARTPage class to iterate through the collection of marks by using foreach statement.
| C# | Copy Code |
|---|---|
// Iterate through art marks on the page, foreach uses ImGearARTPage.GetEnumerator() // to get a ImGearARTPageEnumerator which is used for the foreach. foreach( ImGearARTMark igARTMark in igARTPage) { //Move the art mark. igARTMark.Move(50, 50); } | |
| Visual Basic | Copy Code |
|---|---|
' Iterate through art marks on the page, foreach uses ImGearARTPage.GetEnumerator() ' to get a ImGearARTPageEnumerator which is used for the foreach. For Each igARTMark As ImGearARTMark In igARTPage 'Move the art mark. igARTMark.Move(50, 50) Next | |
System.Object
ImageGear.ART.ImGearARTPageEnumerator