[]
        
(Showing Draft Content)

C1.WPF.FlexReport.Section.Fields

Fields Property

Fields

Gets a collection of all fields in this Section.

Declaration
public FieldCollection Fields { get; }
Remarks
<p>The <b>Fields</b> collection contains all <xref href="C1.WPF.FlexReport.Field" data-throw-if-not-resolved="false"></xref> objects defined in the current section.</p>
<p>When you add a field to a section's <b>Fields</b> collection, the field is automatically assigned to the 

section that owns the collection. For example, the code below adds a field to the Detail section:

<pre><code class="lang-csharp">_c1r.Sections.Detail.Fields.Add("new field", "CompanyLogo", rc);</code></pre>