Class ReportContent
This class holds the content for the Report. It provides a list of ReportContentNodes which describe the content.
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.ReportGenerator
Assembly: Sartorius.SAF.ReportGenerator.dll
Syntax
public class ReportContent : ReportContentNode, IEnumerable<ReportContentNode>, IEnumerable
Constructors
View SourceReportContent()
Initializes a new instance of the ReportContent class.
Declaration
public ReportContent()
ReportContent(ReportContentNode[])
Initializes a new instance of the ReportContent class with the specified content nodes.
Declaration
public ReportContent(params ReportContentNode[] nodes)
Parameters
Type | Name | Description |
---|---|---|
ReportContentNode[] | nodes | An array of content nodes that contains zero or more ReportContentNodes. |
ReportContent(IEnumerable<ReportContentNode>)
Initializes a new instance of the ReportContent class with the specified content nodes.
Declaration
public ReportContent(IEnumerable<ReportContentNode> nodes)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<ReportContentNode> | nodes | The content nodes. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable