ActiveReports Developer 7
DataElementOutput Enumeration
See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.PageReportModel Namespace : DataElementOutput Enumeration

Glossary Item Box

Defines how an item should appear in data output.

Syntax

Visual Basic (Declaration) 
Public Enum DataElementOutput 
   Inherits System.Enum
C# 
public enum DataElementOutput : System.Enum 

Members

MemberDescription
AutoIf the item is a text box with a constant value, such as a label, the item does not appear (NoOutput). If the item is a rectangle, the output is the same as it is for ContentsOnly. For all other report items, the item appears in the output (Output).
ContentsOnlyApplies to XML only. Indicates the item does not appear in the XML, but the contents of the item are rendered as part of the containing report item. ContentsOnly can only be used with lists.
NoOutputIndicates the item should not appear in the output.
OutputIndicates the item should appear in the output.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GrapeCity.ActiveReports.PageReportModel.DataElementOutput

See Also