ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / ReportSectionPage Class / ColumnSpacing Property
Example

In This Topic
    ColumnSpacing Property (ReportSectionPage)
    In This Topic
    Gets or sets the amount of white space between each column in the section page.
    Syntax
    'Declaration
     
    Public Property ColumnSpacing As Length
    public Length ColumnSpacing {get; set;}

    Property Value

    A Length value indicating the spacing between columns. Default value is 0.5in.
    Example
    ReportSectionPage sectionPage = new ReportSectionPage();
    sectionPage.ColumnSpacing = "0.5in";
    See Also