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

In This Topic
    LinkToChild Property
    In This Topic
    Gets or sets the name of a report item contained within this report item that serves as the target location for the Document Map label (if any).
    Syntax
    'Declaration
     
    Public Property LinkToChild As String
    public string LinkToChild {get; set;}

    Property Value

    A System.String value indicating the name of the contained report item.
    Remarks

    Used only for Container items.

    This property is ignored if a Label is not present.

    Example
    var containerItem = new Container();
    containerItem.LinkToChild = "ChildItemName";
    See Also