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

In This Topic
    Columns Property (ReportSectionPage)
    In This Topic
    Gets or sets the number of columns in the section page.
    Syntax
    'Declaration
     
    Public Property Columns As Integer
    public int Columns {get; set;}

    Property Value

    An System.Int32 value indicating the number of columns. Default value is 1. Minimum value is 1 and the maximum value is 100.
    Example
    ReportSectionPage sectionPage = new ReportSectionPage();
    sectionPage.Columns = 2;
    See Also