ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / Detail Class / ColumnSpacing Property
Example

In This Topic
    ColumnSpacing Property (Detail)
    In This Topic
    Sets or returns the space between columns in a multi-column report.
    Syntax
    'Declaration
     
    Public Property ColumnSpacing As Single
    public float ColumnSpacing {get; set;}

    Property Value

    A single value that represents the space between columns.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.detail.ColumnCount = 3;
        this.detail.ColumnSpacing = 1;
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
       Me.Detail1.ColumnCount = 3
       Me.Detail1.ColumnSpacing = 1
    End Sub
    See Also