GrapeCity.ActiveReports.Document.v9 Assembly > GrapeCity.ActiveReports.Document.Section.Annotations Namespace : AnnotationBalloon Class |
'Declaration Public NotInheritable Class AnnotationBalloon Inherits AnnotationText
public sealed class AnnotationBalloon : AnnotationText
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
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
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