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

In This Topic
    Custom Property (ReportItem)
    In This Topic
    Gets or sets custom information for the report item.
    Syntax
    'Declaration
     
    Public Property Custom As Custom
    public Custom Custom {get; set;}

    Property Value

    A Custom object containing the custom information to be passed to a report output component.
    Example
    var reportItem = new TextBox();
    reportItem.Custom = new Custom { Info = "Custom data" };
    See Also