ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / Page Class / Margins Property
Example

In This Topic
    Margins Property (Page)
    In This Topic
    Gets a reference to the page margins settings.
    Syntax
    'Declaration
     
    Public ReadOnly Property Margins As Margins
    public Margins Margins {get;}

    Property Value

    A Margins object used to set the margins of the page.
    Example
    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);
    }
    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
    See Also