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

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

    Property Value

    An System.Int32 value indicating the number of columns. Default is 1, with a minimum of 1 and a maximum of 100.
    Example
    Body body = new Body();
    body.Columns = 3;
    See Also