[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItem.DataElementOutput

DataElementOutput Property

DataElementOutput

Gets or sets a value indicating whether the item appears in a data rendering.

Declaration
public DataElementOutput DataElementOutput { get; set; }
Property Value
Type Description
DataElementOutput

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

Remarks
<p>
    <xref href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.Output" data-throw-if-not-resolved="false"></xref> value indicates that the group appears in the output.</p>
<p>
    <xref href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.NoOutput" data-throw-if-not-resolved="false"></xref> value indicates that the group does not appear in the output.</p>
<p>
    <xref href="GrapeCity.ActiveReports.PageReportModel.DataElementOutput.ContentsOnly" data-throw-if-not-resolved="false"></xref> 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.

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.

Examples
var reportItem = new TextBox();
reportItem.DataElementOutput = DataElementOutput.Output;