ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / PageSettings Class / Gutter Property
Example

In This Topic
    Gutter Property
    In This Topic
    Gets or sets the amount of space between columns in inches.
    Syntax
    'Declaration
     
    Public Property Gutter As Single
    public float Gutter {get; set;}

    Property Value

    A float or Single value in inches used to determine the gutter width.
    Example
    private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
    {
        this.PageSettings.Gutter = 1.0f;
    }
    Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
       Me.PageSettings.Gutter = 1.0F
    End Sub
    See Also