[]
Gets or sets a value representing the collection of the data source fields.
[Browsable(false)]
public FieldCollection Fields { get; }
Type | Description |
---|---|
FieldCollection | A FieldCollection value, with data binding fields. |
This collection contains the available fields objects to which the report controls and sections can be bound.
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);