Search
Report.CreateColumn Method
See Also
 





Creates a new report column.

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

 Syntax

C#  Copy Code

public ReportColumn CreateColumn ()

Visual Basic  Copy Code

Public Function CreateColumn () As ReportColumn

 Return Value

An instance of the ReportColumn class representing a newly created column, compatible with the report.

 Remarks

Once the column is created, you can add it to the report by calling the Add method on the ReportColumnCollection returned by the Columns property. A column should be added only to the report that was used to create it.

 See Also