ActiveReports 8
Margins Property
See Also  Example
GrapeCity.ActiveReports.Document.v8 Assembly > GrapeCity.ActiveReports.Document.Section Namespace > Page Class : Margins Property

Glossary Item Box

Gets a reference to the page margins settings.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Margins As Margins
C# 
public Margins Margins {get;}

Property Value

A Margins object used to set the margins of the page.

Example

C#Copy Code
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;

    Console.WriteLine(arv.Document.Pages[0].Margins.Bottom);
}
Visual BasicCopy Code
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document

    Console.WriteLine(arv.Document.Pages(0).Margins.Bottom)
End Sub

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