Add additional readonly annotations to PdfRectangle

This commit is contained in:
Jason Nelson 2024-04-12 11:26:22 -07:00
parent 58e64988b8
commit b6f87c4352

View File

@ -16,22 +16,22 @@
/// <summary>
/// Top left point of the rectangle.
/// </summary>
public PdfPoint TopLeft { get; }
public readonly PdfPoint TopLeft { get; }
/// <summary>
/// Top right point of the rectangle.
/// </summary>
public PdfPoint TopRight { get; }
public readonly PdfPoint TopRight { get; }
/// <summary>
/// Bottom right point of the rectangle.
/// </summary>
public PdfPoint BottomRight { get; }
public readonly PdfPoint BottomRight { get; }
/// <summary>
/// Bottom left point of the rectangle.
/// </summary>
public PdfPoint BottomLeft { get; }
public readonly PdfPoint BottomLeft { get; }
/// <summary>
/// Centroid point of the rectangle.