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

In This Topic
    Style Property (ReportItem)
    In This Topic
    Gets or sets a style settings for the report item.
    Syntax
    'Declaration
     
    Public Property Style As Style
    public Style Style {get; set;}

    Property Value

    A Style object representing the style of the report item.
    Example
    var reportItem = new TextBox();
    reportItem.Style.FontSize = "12pt";
    reportItem.Style.Color = "Red";
    See Also