LINQ Statement to insert a section break

I’m using the PHP API and I have discovered how to insert a page break using the LINQ syntax:

<<["\f"]>>

However I now also need to insert a section break, how do I do this using the LINQ syntax?

I communicated with colleagues who developed this feature, waiting for their response.

Here is what my colleague said about your use case: you can use either a conditional block or data band to insert a section break

<<if [...]>>

section_break_here

<</if>>

or

<<foreach [...]>>

section_break_here

<</foreach>>