Share via


ReportSection.executeSection Method

Definition

Prints the section on the report.

public:
 virtual void executeSection();
public virtual void executeSection ();
abstract member executeSection : unit -> unit
override this.executeSection : unit -> unit
Public Overridable Sub executeSection ()

Remarks

This method is called when the section is triggered. For example, a body section is triggered when ReportRun::send method is executed. It is the super method call in the executeSection method that actually prints the section in the report. In the Finance and Operations Application Object Tree (AOT), you will find the executeSection method below each section's methods node. If you want to perform some action before a section is printed, such as go to the next page, this action can be coded in the executeSection method.

Applies to