MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionReport Class / WatermarkSizeMode Property
Example

WatermarkSizeMode Property
Sets or returns how the watermark will be sized when the image is rendered on the page.
Syntax
'Declaration
 
Public Property WatermarkSizeMode As SizeModes
 

Property Value

SizeModes enumeration. The default value is SizeModes.Clip.

Remarks
Watermark properties should be specified in the ReportStart event.
Example
private void arv_Load(object sender, System.EventArgs e)
{
    SectionReport1 rpt = new SectionReport1();
    rpt.Watermark = GrapeCity.ActiveReports.Document.Drawing.Image.FromStream(new FileInfo(""C:\\DSCF2183.JPG"").OpenRead());
    rpt.WatermarkSizeMode = GrapeCity.ActiveReports.SectionReportModel.SizeModes.Zoom;
    rpt.Run();
    this.arv.Document = rpt.Document;
}
Private Sub Viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Viewer1.Load
    Dim rpt As New SectionReport1
    rpt.Watermark = GrapeCity.ActiveReports.Document.Drawing.Image.FromStream(New FileInfo("c:\DSCF2183.JPG").OpenRead()))
    rpt.WatermarkSizeMode = GrapeCity.ActiveReports.SectionReportModel.SizeModes.Zoom
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
End Sub
See Also