[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.Fields

Fields Property

Fields

Gets or sets a value representing the collection of the data source fields.

Declaration
[Browsable(false)]
public FieldCollection Fields { get; }
Property Value
Type Description
FieldCollection

A FieldCollection value, with data binding fields.

Remarks

This collection contains the available fields objects to which the report controls and sections can be bound.

Examples
var field = new GrapeCity.ActiveReports.Data.Field();
field.Name = "CategoryName";
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.Fields.Add(field);