'Declaration Public Property DataElementOutput As DataElementOutput
public DataElementOutput DataElementOutput {get; set;}
'Declaration Public Property DataElementOutput As DataElementOutput
public DataElementOutput DataElementOutput {get; set;}
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.
var reportItem = new TextBox(); reportItem.DataElementOutput = DataElementOutput.Output;