ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTPageEnumerator Class
Members Example




In This Topic
    ImGearARTPageEnumerator Class
    In This Topic
    Provides marks iteration capabilities over the annotation page.
    Object Model
    ImGearARTPageEnumerator ClassImGearARTMark Class
    Syntax
    'Declaration
     
    Public Class ImGearARTPageEnumerator 
    'Usage
     
    Dim instance As ImGearARTPageEnumerator
    public class ImGearARTPageEnumerator 
    public __gc class ImGearARTPageEnumerator 
    public ref class ImGearARTPageEnumerator 
    Remarks
    Page enumerator class is used for ImGearARTPage class to iterate through the collection of marks by using foreach statement.
    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