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



This class extends the AnnDrawDesigner class to provide functionality for drawing a freehand AnnPolylineObject on an annotation container.

Object Model




Syntax

Visual Basic (Declaration) 
Public Class AnnFreehandDrawDesigner 
   Inherits AnnDrawDesigner
Visual Basic (Usage)Copy Code
Dim instance As AnnFreehandDrawDesigner
C# 
public class AnnFreehandDrawDesigner : AnnDrawDesigner 
C++/CLI 
public ref class AnnFreehandDrawDesigner : 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 freehand polylines with spaces set to 2

Visual BasicCopy Code
Public Function AnnFreehandDrawDesigner_AnnFreehandDrawDesigner(ByVal viewer As BitmapSourceViewer, ByVal container As AnnContainer) As AnnFreehandDrawDesigner
  ' start a new freehand draw designer
  Dim freehandDrawDesigner As AnnFreehandDrawDesigner = New AnnFreehandDrawDesigner(container)
  ' set up the object template (a 2 pixels-wide polyline)
  Dim polylineObject As AnnPolylineObject = New AnnPolylineObject()
  polylineObject.Stroke = Brushes.Red
  polylineObject.StrokeThickness = 2.0

  ' set up the spacing of the freehand designer
  freehandDrawDesigner.Spacing = 2

  ' initialize the rest of the designer
  freehandDrawDesigner.ObjectTemplate = polylineObject
  freehandDrawDesigner.IsClipCursor = True

  Return freehandDrawDesigner
End Function
C#Copy Code
public AnnFreehandDrawDesigner AnnFreehandDrawDesigner_AnnFreehandDrawDesigner(BitmapSourceViewer viewer, AnnContainer container) 

   // start a new freehand draw designer 
   AnnFreehandDrawDesigner freehandDrawDesigner = new AnnFreehandDrawDesigner(container); 
   // set up the object template (a 2 pixels-wide polyline) 
   AnnPolylineObject polylineObject = new AnnPolylineObject(); 
   polylineObject.Stroke = Brushes.Red; 
   polylineObject.StrokeThickness = 2.0; 
 
   // set up the spacing of the freehand designer 
   freehandDrawDesigner.Spacing = 2; 
 
   // initialize the rest of the designer 
   freehandDrawDesigner.ObjectTemplate = polylineObject; 
   freehandDrawDesigner.IsClipCursor = true; 
 
   return freehandDrawDesigner; 
}

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.AnnFreehandDrawDesigner

Requirements

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

See Also

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