Error processing SSI file
LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)

Show in webframe

AnnObject Class






Members 
This is the base class for all annotation objects.
Object Model
Syntax
public abstract class AnnObject : System.Windows.DependencyObject, IAnnHeaderIAnnObject  
'Declaration
 
Public MustInherit Class AnnObject 
   Inherits System.Windows.DependencyObject
   Implements IAnnHeaderIAnnObject 
'Usage
 
Dim instance As AnnObject

            

            
public ref class AnnObject abstract : public System.Windows.DependencyObject, IAnnHeaderIAnnObject  
Remarks

The AnnObject class provides all the basic functionality common to all LEADTOOLS annotation objects.

The AnnObject is an abstract class, you cannot instantiate objects of this class directly.

Example

This example displays the rotate angle of an AnnObject.

Copy Code  
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Public Sub AnnObject_AnnObject(ByVal container As AnnContainer)
   For Each obj As AnnObject In container.Children
      Dim s As String = String.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink)
      MessageBox.Show(s)
   Next obj
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;

public void AnnObject_AnnObject(AnnContainer container)
{
   foreach (AnnObject obj in container.Children)
   {
      string s = string.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink);
      MessageBox.Show(s);
   }
}
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;

public void AnnObject_AnnObject(AnnContainer container)
{
   foreach (AnnObject obj in container.Children)
   {
      string s = string.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink);
      MessageBox.Show(s);
   }
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Public Sub AnnObject_AnnObject(ByVal container As AnnContainer)
   For Each obj As AnnObject In container.Children
      Dim s As String = String.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink)
      MessageBox.Show(s)
   Next obj
End Sub
Requirements

Target Platforms

See Also

Reference

AnnObject Members
Leadtools.Windows.Annotations Namespace

Error processing SSI file
   Leadtools.Windows.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features