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

In This Topic
    InnerXml Property (CustomReportItem)
    In This Topic
    Gets or sets a XML representation of the custom report item.
    Syntax
    'Declaration
     
    Public Property InnerXml As String
    public string InnerXml {get; set;}

    Property Value

    A System.String value containing XML content representing the custom report item.
    Remarks
    This contains all of the XML content inside the CustomReportItem element.
    Example
    CustomReportItem customReportItem = new CustomReportItem();
    customReportItem.InnerXml = "<CustomReportItem><Property1>Value1</Property1></CustomReportItem>";
    See Also