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





Defines a closed annotation curve object.

Object Model



Syntax

Visual Basic (Declaration) 
<SerializableAttribute()>
Public Class AnnClosedCurveObject 
   Inherits AnnPolygonObject
Visual Basic (Usage)Copy Code
Dim instance As AnnClosedCurveObject
C# 
[SerializableAttribute()]
public class AnnClosedCurveObject : AnnPolygonObject 
C++/CLI 
[SerializableAttribute()]
public ref class AnnClosedCurveObject : public AnnPolygonObject 
XAML Object Element Usage 

<AnnClosedCurveObject .../>

XAML Object Element Usage 

<AnnClosedCurveObject .../>

Example

This example creates a new closed curve object with 4 points.

Visual BasicCopy Code
Private Sub AnnClosedCurveObject_AnnClosedCurveObject(ByVal container As AnnContainer)
  Dim closedCurve As AnnClosedCurveObject = New AnnClosedCurveObject()
    closedCurve.Points.Add(New System.Windows.Point(100, 100))
    closedCurve.Points.Add(New System.Windows.Point(200, 100))
    closedCurve.Points.Add(New System.Windows.Point(200, 200))
    closedCurve.Points.Add(New System.Windows.Point(100, 300))
  closedCurve.Tension = 1
  closedCurve.Stroke = Brushes.Red
  closedCurve.StrokeThickness = 2.0
  closedCurve.Fill = Brushes.White
  closedCurve.FillRule = FillRule.EvenOdd
  closedCurve.IsClosed = True
  container.Children.Add(closedCurve)
End Sub
C#Copy Code
private void AnnClosedCurveObject_AnnClosedCurveObject(AnnContainer container) 

   AnnClosedCurveObject closedCurve = new AnnClosedCurveObject(); 
   closedCurve.Points.Add(new Point(100, 100)); 
   closedCurve.Points.Add(new Point(200, 100)); 
   closedCurve.Points.Add(new Point(200, 200)); 
   closedCurve.Points.Add(new Point(100, 300)); 
   closedCurve.Tension = 1; 
   closedCurve.Stroke = Brushes.Red; 
   closedCurve.StrokeThickness = 2.0; 
   closedCurve.Fill = Brushes.White; 
   closedCurve.FillRule = FillRule.EvenOdd; 
   closedCurve.IsClosed = true; 
   container.Children.Add(closedCurve); 
}
XAMLCopy Code
<Window x:Class="WPFSamples.AnnClosedCurveObject" Title="Leadtools.Windows.Annotations" Height="600" Width="800" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Leadtools_Windows_Annotations="clr-namespace:Leadtools.Windows.Annotations;assembly=Leadtools.Windows.Annotations"> 
  <Leadtools_Windows_Annotations:AnnClosedCurveObject Stroke="Blue" StrokeThickness="3.0" FillRule="EvenOdd" IsClosed="True" Tension="1.0" Points="100,100 175, 125, 25,150 175,175 100,200" Header="Closed Curve Object"> 
    <Leadtools_Windows_Annotations:AnnClosedCurveObject.Fill> 
      <LinearGradientBrush> 
        <GradientStop Offset="0.0" Color="Black" /> 
        <GradientStop Offset="0.5" Color="Red" /> 
        <GradientStop Offset="1.0" Color="Yellow" /> 
      </LinearGradientBrush> 
    </Leadtools_Windows_Annotations:AnnClosedCurveObject.Fill> 
  </Leadtools_Windows_Annotations:AnnClosedCurveObject> 
</Window>

Remarks

The closed curve object is a spline curve that contains a collection of Point points, a stroke, a fill and a tension value. The curve can be AnnPolygonObject.IsClosed or not, and can also have a certain AnnPolygonObject.FillRule.

For more information about the closed curve annotation object refer to AnnClosedCurveObject for WPF. For more information about the automated closed curve annotation object, refer to WPF Annotation Objects - Automated Features.

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         System.Windows.Media.Visual
            System.Windows.UIElement
               System.Windows.FrameworkElement
                  Leadtools.Windows.Annotations.AnnObjectBase
                     Leadtools.Windows.Annotations.AnnPolylineObject
                        Leadtools.Windows.Annotations.AnnPolygonObject
                           Leadtools.Windows.Annotations.AnnClosedCurveObject

Requirements

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

See Also

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