Leadtools.Windows.Annotations Namespace : AnnObject Class |
public abstract class AnnObject : System.Windows.DependencyObject, IAnnHeader, IAnnObject
'Declaration Public MustInherit Class AnnObject Inherits System.Windows.DependencyObject Implements IAnnHeader, IAnnObject
'Usage Dim instance As AnnObject
public sealed class AnnObject : IAnnHeader, IAnnObject
function Leadtools.Windows.Annotations.AnnObject()
public ref class AnnObject abstract : public System.Windows.DependencyObject, IAnnHeader, 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.
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
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); } }
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); } }
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
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2