GrapeCity ActiveReports for .NET 14.0J
Annotation クラス
メンバ  使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document.Section.Annotations 名前空間 : Annotation クラス
Annotationは、Annotationオブジェクトの基本クラスです。
オブジェクト モデル
Annotation クラス
シンタックス
'宣言
 
Public Class Annotation 
   Inherits System.ComponentModel.Component
public class Annotation : System.ComponentModel.Component 
使用例
using GrapeCity.ActiveReports.Document.Section.Annotations;

rptAnnotations rpt = new rptAnnotations();
private void AddAnnotations()
{
   //レポートを実行します。
   rpt.Run();
   
   //ビューワに割り当てます。
   this.viewer1.Document = rpt.Document;
   
   //注釈を作成し、プロパティ値を割り当てます。
   AnnotationCircle circle = new AnnotationCircle();
   circle.Color = System.Drawing.Color.GreenYellow;
   circle.Border.Color = System.Drawing.Color.Chartreuse;
  
   //注釈を追加します。
   circle.Attach(1,1); //位置
   this.viewer1.Document.Pages[0].Annotations.Add(circle);

   //サイズを設定します。
   circle.Height = 0.25f;
   circle.Width = 0.50f;

   //注釈をRDFファイルに保存します。
   rpt.Document.Save("C:\\MyAnnotations.rdf");
}
Imports GrapeCity.Viewer.Annotations

Dim rpt As New rptAnnotations
Private Sub AddAnnotations() 
   'レポートを実行します。
   rpt.Run()

   'ビューワに割り当てます。
   Me.Viewer1.Document = rpt.Document

   '注釈を作成し、プロパティ値を割り当てます。
   Dim circle As New AnnotationCircle
   circle.Color = System.Drawing.Color.GreenYellow
   circle.Border.Color = System.Drawing.Color.Chartreuse

   '注釈を追加します。
   circle.Attach(1,1) '位置
   Me.Viewer1.Document.Pages(0).Annotations.Add(circle)

   'サイズを設定します。
   circle.Height = 0.25
   circle.Width = 0.50

   '注釈をRDFファイルに保存します。
   rpt.Document.Save("C:\\MyAnnotations.rdf")
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.AnnotationCircle
            GrapeCity.ActiveReports.Document.Section.Annotations.AnnotationLine
            GrapeCity.ActiveReports.Document.Section.Annotations.AnnotationRectangle

参照

Annotation メンバ
GrapeCity.ActiveReports.Document.Section.Annotations 名前空間