Search
Report.Columns Property
See Also
 





Gets a collection with all columns in the report.

Namespace: MindFusion.Scheduling.Reporting
Assembly: MindFusion.Scheduling.Reporting

 Syntax

C#  Copy Code

public ReportColumnCollection Columns { get; }

Visual Basic  Copy Code

Public ReadOnly Property Columns As ReportColumnCollection

 Property Value

An instance of the ReportColumnCollection class containing the columns associated with this report. Use this collection to modify the columns produced by the report.

 Remarks

You create new report columns by calling the CreateColumn method on the Report class. Then you add the new column to the report by calling the Add method on the ReportColumnCollection returned by this property.

 See Also