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

In This Topic
    CustomData Property (CustomReportItem)
    In This Topic
    Gets or sets a custom data settings used by the custom report item.
    Syntax
    'Declaration
     
    Public Property CustomData As CustomData
    public CustomData CustomData {get; set;}

    Property Value

    A CustomData object representing custom data settings, or null if none are defined.
    Example
    CustomReportItem customReportItem = new CustomReportItem();
    customReportItem.CustomData = new CustomData();
    See Also