ActiveReports 6 Online Help
Annotation Class
Members  Example 

Annotation is the base class for Annotation objects.
Object Model
Annotation ClassBorder Class
Syntax
'Declaration
 
Public Class Annotation 
   Inherits System.ComponentModel.Component
public class Annotation : System.ComponentModel.Component 
Example
using DataDynamics.ActiveReports.Viewer.Annotations;

rptAnnotations rpt = new rptAnnotations();
private void AddAnnotations()
{
   //Run the report first
   rpt.Run();
   
   //Assign the viewer
   this.viewer1.Document = rpt.Document;
   
   //Create an annotation and assign property values
   AnnotationCircle circle = new AnnotationCircle();
   circle.Color = System.Drawing.Color.GreenYellow;
   circle.Border.Color = System.Drawing.Color.Chartreuse;
  
   //Add the annotation
   circle.Attach(1,1); //screen location
   this.viewer1.Document.Pages[0].Annotations.Add(circle);

   //Set the size properties. The annotation must be added to the page first.
   circle.Height = 0.25f;
   circle.Width = 0.50f;

   //Save annotations to an RDF file
   rpt.Document.Save("C:\\MyAnnotations.rdf");
}
Imports DataDynamics.Viewer.Annotations

Dim rpt As New rptAnnotations
Private Sub AddAnnotations() 
   'Run the report first
   rpt.Run()

   'Assign the viewer
   Me.Viewer1.Document = rpt.Document

   'Create an annotation and assign property values
   Dim circle As New AnnotationCircle
   circle.Color = System.Drawing.Color.GreenYellow
   circle.Border.Color = System.Drawing.Color.Chartreuse

   'Add the annotation
   circle.Attach(1,1) 'screen location
   Me.Viewer1.Document.Pages(0).Annotations.Add(circle)

   'Set the size properties. The annotation must be added to the page first.
   circle.Height = 0.25
   circle.Width = 0.50

   'Save annotations to an RDF file
   rpt.Document.Save("C:\\MyAnnotations.rdf")
End Sub
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         DataDynamics.ActiveReports.Document.Annotations.Annotation
            DataDynamics.ActiveReports.Document.Annotations.AnnotationBaseText
            DataDynamics.ActiveReports.Document.Annotations.AnnotationCircle
            DataDynamics.ActiveReports.Document.Annotations.AnnotationLine
            DataDynamics.ActiveReports.Document.Annotations.AnnotationRectangle

Requirements

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

See Also

Reference

Annotation Members
DataDynamics.ActiveReports.Document.Annotations Namespace

Send Feedback