Provides marks iteration capabilities over the annotation page.
Object Model
Syntax
public class ImGearARTPageEnumerator
public __gc class ImGearARTPageEnumerator
public ref class ImGearARTPageEnumerator
Example
// 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);
}
' 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
Inheritance Hierarchy
System.Object
ImageGear.ART.ImGearARTPageEnumerator
See Also