Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
AnnTextPointerDrawDesigner Class
See Also  Members   Example 
Leadtools.Windows.Annotations Namespace : AnnTextPointerDrawDesigner Class



This class extends the AnnRectangleDrawDesigner class to provide functionality for drawing an AnnTextPointerObject on an annotation container.

Object Model




Syntax

Visual Basic (Declaration) 
Public Class AnnTextPointerDrawDesigner 
   Inherits AnnDrawDesigner
Visual Basic (Usage)Copy Code
Dim instance As AnnTextPointerDrawDesigner
C# 
public class AnnTextPointerDrawDesigner : AnnDrawDesigner 
C++/CLI 
public ref class AnnTextPointerDrawDesigner : public AnnDrawDesigner 

Example

For a complete example on how to use annotation draw and edit designers, refer to AnnDesigner This example initializes a new designer to draw text pointer objects.

Visual BasicCopy Code
Public Function AnnTextPointerDrawDesigner_AnnTextPointerDrawDesigner(ByVal viewer As BitmapSourceViewer, ByVal container As AnnContainer) As AnnTextPointerDrawDesigner
  ' start a new text pointer draw designer
  Dim textPointerDrawDesigner As AnnTextPointerDrawDesigner = New AnnTextPointerDrawDesigner(container)
  Dim textPointer As AnnTextPointerObject = New AnnTextPointerObject()
  textPointer.Stroke = Nothing
  textPointer.Fill = Nothing
  textPointer.FontFamily = New FontFamily("Arial")
  textPointer.FontSize = 10.0
  textPointer.TextEdgeMargin = 0.0
    textPointer.TextHorizontalAlignment = AnnTextAlignment.Center
    textPointer.TextVerticalAlignment = AnnTextAlignment.Center
    textPointer.PointerPosition = New System.Windows.Point(800, 800)
  textPointer.IsFixedPointer = True

  ' set up the default text to be used
  textPointerDrawDesigner.DefaultText = "Leadtools"

  ' initialize the rest of the designer
  textPointerDrawDesigner.ObjectTemplate = textPointer
  textPointerDrawDesigner.IsClipCursor = True

  Return textPointerDrawDesigner
End Function
C#Copy Code
public AnnTextPointerDrawDesigner AnnTextPointerDrawDesigner_AnnTextPointerDrawDesigner(BitmapSourceViewer viewer, AnnContainer container) 

   // start a new text pointer draw designer 
   AnnTextPointerDrawDesigner textPointerDrawDesigner = new AnnTextPointerDrawDesigner(container); 
   AnnTextPointerObject textPointer = new AnnTextPointerObject(); 
   textPointer.Stroke = null; 
   textPointer.Fill = null; 
   textPointer.FontFamily = new FontFamily("Arial"); 
   textPointer.FontSize = 10.0; 
   textPointer.TextEdgeMargin = 0.0; 
   textPointer.TextHorizontalAlignment = AnnTextAlignment.Center; 
   textPointer.TextVerticalAlignment = AnnTextAlignment.Center; 
   textPointer.PointerPosition = new Point(800, 800); 
   textPointer.IsFixedPointer = true; 
 
   // set up the default text to be used 
   textPointerDrawDesigner.DefaultText = "Leadtools"; 
 
   // initialize the rest of the designer 
   textPointerDrawDesigner.ObjectTemplate = textPointer; 
   textPointerDrawDesigner.IsClipCursor = true; 
 
   return textPointerDrawDesigner; 
}

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         System.Windows.Media.Visual
            System.Windows.UIElement
               System.Windows.FrameworkElement
                  System.Windows.Documents.Adorner
                     Leadtools.Windows.Annotations.AnnDesigner
                        Leadtools.Windows.Annotations.AnnDrawDesigner
                           Leadtools.Windows.Annotations.AnnTextPointerDrawDesigner

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

AnnTextPointerDrawDesigner requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.