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

In This Topic
    AltReportItem Property
    In This Topic
    Gets or sets an alternative report item to use if the custom report item cannot be processed.
    Syntax
    'Declaration
     
    Public Property AltReportItem As ReportItem
    public ReportItem AltReportItem {get; set;}

    Property Value

    A ReportItem object representing the alternative report item.
    Example
    CustomReportItem customReportItem = new CustomReportItem();
    customReportItem.AltReportItem = new TextBox();
    See Also