C#
VB
C++
This is the base class for all annotation objects.
public abstract class AnnObject : IAnnObject, IAnnHeader, DependencyObject Public MustInherit Class AnnObjectInherits System.Windows.DependencyObjectImplements Leadtools.Windows.Annotations.IAnnHeader, Leadtools.Windows.Annotations.IAnnObject
public ref class AnnObject abstract : public System.Windows.DependencyObject, Leadtools.Windows.Annotations.IAnnHeader, Leadtools.Windows.Annotations.IAnnObject 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.
This example displays the rotate angle of an AnnObject.
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);}}
Imports Leadtools.Windows.ControlsImports Leadtools.Windows.AnnotationsPublic Sub AnnObject_AnnObject(ByVal container As AnnContainer)For Each obj As AnnObject In container.ChildrenDim s As String = String.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink)MessageBox.Show(s)Next objEnd Sub
using Leadtools.Windows.Controls;using Leadtools.Windows.Annotations;using Leadtools.Examples;//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);}}
Imports Leadtools.Windows.ControlsImports Leadtools.Windows.AnnotationsPublic Sub AnnObject_AnnObject(ByVal container As AnnContainer)For Each obj As AnnObject In container.ChildrenDim s As String = String.Format("Type: {0}, Name: {1}, Hyperlink: {2}", obj.GetType().Name, obj.Header, obj.Hyperlink)MessageBox.Show(s)Next objEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
