ImageGear for .NET
ImGearARTPageEnumerator Class
Members  Example  See Also  Send Feedback
ImageGear21.Art Assembly > ImageGear.ART Namespace : ImGearARTPageEnumerator Class




Glossary Item Box

Provides marks iteration capabilities over the annotation page.

Object Model

ImGearARTPageEnumerator ClassImGearARTMark Class

Syntax

 
Visual Basic
C#
Managed Extensions for C++
C++/CLI
 
 

Remarks

Page enumerator class is used for ImGearARTPage class to iterate through the collection of marks by using foreach statement.

Example

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

Inheritance Hierarchy

System.Object
   ImageGear.ART.ImGearARTPageEnumerator

See Also

©2013. Accusoft Corporation. All Rights Reserved.