> For the complete documentation index, see [llms.txt](https://notes.tejpratapsingh.com/pdf-creator-android/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.tejpratapsingh.com/pdf-creator-android/available-views/pdfpagebreakview.md).

# PDFPageBreakView

Content added after PDFPageBreakView will be added in new page in PDF.

Add `PDFPageBreakView` inside your `PDFBody` to break page and add next content to a new PDF page.

```java
final PDFPageBreakView pdfPageBreakView = new PDFPageBreakView(getApplicationContext());
pdfBody.addView(pdfPageBreakView);
```

{% hint style="info" %}
Take care when using `PDFPageBreakView` , It will break page wherever you add it. So make sure you add `PDFPageBreakView` directly inside of `PDFBody`
{% endhint %}
