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

In This Topic
    Style Property (Body)
    In This Topic
    Gets or sets the style properties for the report body.
    Syntax
    'Declaration
     
    Public Property Style As Style
    public Style Style {get; set;}

    Property Value

    A Style object representing the style settings for the body.
    Remarks
    The body is styled similarly to a ReportItem, except the Style.Language property does not apply.
    Example
    Body body = new Body();
    body.Style = new Style { BackgroundColor = "LightGray" };
    See Also