PowerTools ActiveReports for .NET 9.0J
WatermarkAlignment プロパティ
使用例 

ウォーターマーク(透かし)をキャンバスに追加するときの垂直/水平位置を取得または設定します。
構文
'宣言
 
Public Property WatermarkAlignment As PictureAlignment
public PictureAlignment WatermarkAlignment {get; set;}

プロパティ値

現在のウォーターマーク(透かし)の位置設定。デフォルトは、PictureAlignment.Centerです。

解説

ウォーターマーク(透かし)プロパティは、ReportStartイベントで設定する必要があります。

使用例
SectionReport1 rpt = new SectionReport1();
    rpt.Watermark=System.Drawing.Image.FromFile ("C:\\DSCF2183.JPG");
    rpt.WatermarkAlignment = GrapeCity.ActiveReports.SectionReportModel.PictureAlignment.BottomRight;
    rpt.Run();
    this.viewer1.Document = rpt.Document;
Dim rpt As New SectionReport1
    rpt.Watermark = System.Drawing.Image.FromFile("c:\DSCF2183.JPG")
    rpt.WatermarkAlignment = GrapeCity.ActiveReports.SectionReportModel.PictureAlignment.BottomRight
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
参照

関連項目

SectionReport クラス
SectionReport メンバ
Watermark プロパティ
PictureAlignment 列挙体

 

 


©2003-2015 GrapeCity inc. All rights reserved.