officefileapi-devexpress-dot-pdf-dot-pdfrectangle-de2f76b0.md
Gets the PdfRectangle‘s bottom right coordinate.
Namespace : DevExpress.Pdf
Assembly : DevExpress.Pdf.v25.2.Core.dll
NuGet Package : DevExpress.Pdf.Core
public PdfPoint BottomRight { get; }
Public ReadOnly Property BottomRight As PdfPoint
| Type | Description |
|---|---|
| PdfPoint |
A PdfPoint structure, representing the bottom right coordinate of the PDF rectangle.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BottomRight property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
office-file-api-ai-implementation/CS/Controllers/SummarizeController.cs#L77
PdfDocumentPosition pagePosition1 = new PdfDocumentPosition(1, firstPageBox.TopLeft);
PdfDocumentPosition pagePosition2 = new PdfDocumentPosition(1, firstPageBox.BottomRight);
var pageArea = PdfDocumentArea.Create(pagePosition1, pagePosition2);
See Also