Visual Basic
C#
Managed Extensions for C++
C++/CLI
This class provides methods and properties for accessing to annotation groups and individual marks on the page.
ImGearARTPage is completely independent from ImageGear.Core.ImGearPage class and can be associated with one or more ImageGear.Core.ImGearPage class objects.
C# | Copy Code |
---|---|
// Build a list of selected marks. ArrayList igARTMarks = new ArrayList(); ImGearARTPage igARTPage = (pageView.Display.ARTPage as ImGearARTPage); foreach (ImGearARTMark igARTMark in igARTPage) { if (igARTPage.MarkIsSelected(igARTMark)) igARTMarks.Add(igARTMark); } // Delete the marks. igARTPage.RemoveMarks(igARTMarks); // Redraw the view. pageView.Update(); |
Visual Basic | Copy Code |
---|---|
' Build a list of selected marks. Dim igARTMarks As New ArrayList() Dim igARTPage As ImGearARTPage = TryCast(pageView.Display.ARTPage, ImGearARTPage) For Each igARTMark As ImGearARTMark In igARTPage If igARTPage.MarkIsSelected(igARTMark) Then igARTMarks.Add(igARTMark) End If Next ' Delete the marks. igARTPage.RemoveMarks(igARTMarks) ' Redraw the view. pageView.Update() |
System.Object
ImageGear.Display.ImGearAnnotationPage
ImageGear.ART.ImGearARTPage