Back to Devexpress

PdfRectangle.BottomRight Property

officefileapi-devexpress-dot-pdf-dot-pdfrectangle-de2f76b0.md

latest2.1 KB
Original Source

PdfRectangle.BottomRight Property

Gets the PdfRectangle‘s bottom right coordinate.

Namespace : DevExpress.Pdf

Assembly : DevExpress.Pdf.v25.2.Core.dll

NuGet Package : DevExpress.Pdf.Core

Declaration

csharp
public PdfPoint BottomRight { get; }
vb
Public ReadOnly Property BottomRight As PdfPoint

Property Value

TypeDescription
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

csharp
PdfDocumentPosition pagePosition1 = new PdfDocumentPosition(1, firstPageBox.TopLeft);
PdfDocumentPosition pagePosition2 = new PdfDocumentPosition(1, firstPageBox.BottomRight);
var pageArea = PdfDocumentArea.Create(pagePosition1, pagePosition2);

See Also

TopLeft

PdfRectangle Class

PdfRectangle Members

DevExpress.Pdf Namespace