LEADTOOLS Annotations for WPF and Silverlight (Leadtools.Windows.Annotations assembly)

AnnNoteObject Class

Show in webframe
Example 





Members 
The note annotation object.
Object Model
Syntax
public class AnnNoteObject : AnnTextObject, IAnnFontIAnnHeaderIAnnObjectIAnnRectangleIAnnText  
'Declaration
 
Public Class AnnNoteObject 
   Inherits AnnTextObject
   Implements IAnnFontIAnnHeaderIAnnObjectIAnnRectangleIAnnText 
'Usage
 
Dim instance As AnnNoteObject

            

            
public ref class AnnNoteObject : public AnnTextObject, IAnnFontIAnnHeaderIAnnObjectIAnnRectangleIAnnText  
Remarks

The note annotation object is a rectangle with a shadow border and brush background (yellow by default). It contains a text string with font properties. The text will wrap on word breaks within the object's specified rectangle. For more information about the note annotation object refer to WPF AnnNoteObject. For more information about the automated note annotation object, refer to WPF Annotation Objects - Automated Features.

Example
Copy Code  
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Private Sub AnnNoteObject_AnnNoteObject(ByVal container As AnnContainer, ByVal textString As String)
   Dim note As AnnNoteObject = New AnnNoteObject()
   note.Text = textString
   note.FontFamilyName = "Arial"
   note.FontSize = 10.0
   note.FontStyle = AnnFontStyle.Normal
   note.TextEdgeMargin = 0.0
   note.ShadowBorderWidth = 6.0
   note.TextHorizontalAlignment = AnnTextAlignment.Center
   note.TextVerticalAlignment = AnnTextAlignment.Center
   note.Rect = New Rect(100, 200, 400, 600)

   container.Children.Add(note)
End Sub
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Demos;
using Leadtools.Help;

private void AnnNoteObject_AnnNoteObject(AnnContainer container, string textString)
{
   AnnNoteObject note = new AnnNoteObject();
   note.Text = textString;
   note.FontSize = 10.0;
   note.TextEdgeMargin = 0.0;
   note.ShadowBorderWidth = 6.0;
   note.TextHorizontalAlignment = AnnTextAlignment.Center;
   note.TextVerticalAlignment = AnnTextAlignment.Center;
   note.FontFamilyName = "Arial";
   note.FontStyle = AnnFontStyle.Normal;
   note.Rect = new Rect(100, 200, 400, 600);

   container.Children.Add(note);
}
using Leadtools.Windows.Controls;
using Leadtools.Windows.Annotations;
using Leadtools.Examples;

private void AnnNoteObject_AnnNoteObject(AnnContainer container, string textString)
{
   AnnNoteObject note = new AnnNoteObject();
   note.Text = textString;
   note.FontSize = 10.0;
   note.ShadowBorderWidth = 6.0;
   note.TextHorizontalAlignment = AnnTextAlignment.Center;
   note.FontFamilyName = "Arial";
   note.FontStyle = AnnFontStyle.Normal;
   note.Rect = new Rect(100, 200, 400, 600);

   container.Children.Add(note);
}
Imports Leadtools.Windows.Controls
Imports Leadtools.Windows.Annotations

Private Sub AnnNoteObject_AnnNoteObject(ByVal container As AnnContainer, ByVal textString As String)
   Dim note As AnnNoteObject = New AnnNoteObject()
   note.Text = textString
   note.FontSize = 10.0
   note.ShadowBorderWidth = 6.0
   note.TextHorizontalAlignment = AnnTextAlignment.Center
   note.FontFamilyName = "Arial"
   note.FontStyle = AnnFontStyle.Normal
   note.Rect = New Rect(100, 200, 400, 600)

   container.Children.Add(note)
End Sub
<Window x:Class="WPFSamples.AnnNoteObject"
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     Title="Leadtools.Windows.Annotations" Height="600" Width="800"
     xmlns:Leadtools_Windows_Annotations="clr-namespace:Leadtools.Windows.Annotations;assembly=Leadtools.Windows.Annotations"
  >
   <Leadtools_Windows_Annotations:AnnNoteObject
      Left="100"
      Top="100"
      Width="200"
      Height="100"
      Stroke="Black"
      StrokeThickness="3.0"
      Header="Note Object"
      Text="Note Text"
      TextHorizontalAlignment="Center"
      TextVerticalAlignment="Center"
      ShadowBorderWidth="8.0"/>
</Window>
Requirements

Target Platforms

See Also

Reference

AnnNoteObject Members
Leadtools.Windows.Annotations Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.