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

In This Topic
    DataElementOutput Property (ReportItem)
    In This Topic
    Gets or sets a value indicating whether the item appears in a data rendering.
    Syntax
    'Declaration
     
    Public Property DataElementOutput As DataElementOutput
    public DataElementOutput DataElementOutput {get; set;}

    Property Value

    A DataElementOutput value indicating whether the item appears in a data rendering.
    Remarks

    Output value indicates that the group appears in the output.

    NoOutput value indicates that the group does not appear in the output.

    ContentsOnly value indicates that the item does not appear in the XML, but its contents are rendered as if they were in the item's container. This value only applies to Lists.

    DataElementOutput.Auto (Default) value behaves in the same manner as NoOutput for TextBox report items with constant values, ContentsOnly for Container report items and Output for all other items.

    Example
    var reportItem = new TextBox();
    reportItem.DataElementOutput = DataElementOutput.Output;
    See Also