ActiveReports 9
AnnotationBalloon Class
Members  Example 

Represents the AnnotationBalloon object.
Object Model
AnnotationBalloon Class
Syntax
'Declaration
 
Public NotInheritable Class AnnotationBalloon 
   Inherits AnnotationText
public sealed class AnnotationBalloon : AnnotationText 
Example
using GrapeCity.ActiveReports.Document.Section.Annotations; 
 
private void AddAnnotations() 
{ 
    rptAnno rpt = new rptAnno(); 
    rpt.Run(); 
    this.viewer1.Document = rpt.Document; 
 
    AnnotationBalloon ball = new AnnotationBalloon();
    ball.Color = Color.LightSalmon;
    ball.Alpha = 75;
    ball.Border.Color = Color.Red;
    ball.Text = "Needs Review";
    ball.TextColor = Color.Black;
    ball.LineAligment = System.Drawing.StringAlignment.Center;
    ball.Alignment = System.Drawing.StringAlignment.Center;
    ball.Quadrant = AnnotationBalloon.BallonQuadrant.BottomLeft;

    ball.Attach(3, 3);
    this.viewer1.Document.Pages[0].Annotations.Add(ball);

    ball.Height = 1;
    ball.Width = 1.5f; 
}
Imports GrapeCity.ActiveReports.Document.Section.Annotations

Dim rpt As New rptAnnotations
Private Sub AddAnnotations()
   rpt.Run()
   Me.Viewer1.Document = rpt.Document

   Dim ball As New AnnotationBalloon()
   ball.Color = Color.LightSalmon;
   ball.Alpha = 75;
   ball.Border.Color = Color.Red;
   ball.Text = "Needs Review";
   ball.TextColor = Color.Black;
   ball.LineAligment = System.Drawing.StringAlignment.Center;
   ball.Alignment = System.Drawing.StringAlignment.Center;
   ball.Quadrant = AnnotationBalloon.BallonQuadrant.BottomLeft;

   ball.Attach(4, 4)
   Me.Viewer1.Document.Pages(0).Annotations.Add(ball)

   ball.Height = 1
   ball.Width = 1.5
End Sub
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.ActiveReports.Document.Section.Annotations.Annotation
            GrapeCity.ActiveReports.Document.Section.Annotations.AnnotationBaseText
               GrapeCity.ActiveReports.Document.Section.Annotations.AnnotationText
                  GrapeCity.ActiveReports.Document.Section.Annotations.AnnotationBalloon

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

AnnotationBalloon Members
GrapeCity.ActiveReports.Document.Section.Annotations Namespace

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum