←Select platform

AnnGroupObject Class

Summary

This class provides support for creating and managing annotation group objects.

Remarks

The annotation group object contains a collection of annotation objects from any class that is derived from theAnnObject class. This collection of objects can be treated as one while they are in a group. An annotation object can be in either a container or a group but not both at the same time. For more information about grouping and ungrouping, refer to Grouping and Ungrouping WPF Annotation Objects.

Example

This example moves all the objects from a container into a new group object.

C#
VB
Silverlight C#
Silverlight VB
using Leadtools.Windows.Annotations; 
using Leadtools.Windows.Controls; 
using Leadtools.Demos; 
using Leadtools.Help; 
 
private void AnnGroupObject_AnnGroupObject(AnnContainer container) 
{ 
   AnnGroupObject group = new AnnGroupObject(); 
 
   // move the objects to the group 
   while (container.Children.Count > 0) 
   { 
      AnnObject obj = container.Children[0] as AnnObject; 
      container.Children.RemoveAt(0); 
      group.Children.Add(obj); 
   } 
 
   // add the group to the container 
   container.Children.Add(group); 
} 
Imports Leadtools.Windows.Annotations 
Imports Leadtools.Windows.Controls 
 
Private Sub AnnGroupObject_AnnGroupObject(ByVal container As AnnContainer) 
   Dim group As AnnGroupObject = New AnnGroupObject() 
 
   ' move the objects to the group 
   Do While container.Children.Count > 0 
      Dim obj As AnnObject = DirectCast(container.Children(0), AnnObject) 
      container.Children.RemoveAt(0) 
      group.Children.Add(obj) 
   Loop 
 
   ' add the group to the container 
   container.Children.Add(group) 
End Sub 
using Leadtools.Windows.Annotations; 
using Leadtools.Windows.Controls; 
using Leadtools.Examples; 
//using Leadtools.Help; 
 
private void AnnGroupObject_AnnGroupObject(AnnContainer container) 
{ 
   AnnGroupObject group = new AnnGroupObject(); 
 
   // move the objects to the group 
   while (container.Children.Count > 0) 
   { 
      AnnObject obj = container.Children[0] as AnnObject; 
      container.Children.RemoveAt(0); 
      group.Children.Add(obj); 
   } 
 
   // add the group to the container 
   container.Children.Add(group); 
} 
Imports Leadtools.Windows.Annotations 
Imports Leadtools.Windows.Controls 
 
Private Sub AnnGroupObject_AnnGroupObject(ByVal container As AnnContainer) 
   Dim group As AnnGroupObject = New AnnGroupObject() 
 
   ' move the objects to the group 
   Do While container.Children.Count > 0 
      Dim obj As AnnObject = TryCast(container.Children(0), AnnObject) 
      container.Children.RemoveAt(0) 
      group.Children.Add(obj) 
   Loop 
 
   ' add the group to the container 
   container.Children.Add(group) 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Windows.Annotations Assembly