Click or drag to resize

PdfRectangle Structure

Stores a set of four integers that represent the location and size of a rectangle describing part of a PdfDocument.

Namespace:  RadPdf.Data.Document.Common
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public struct PdfRectangle

The PdfRectangle type exposes the following members.

Properties
  NameDescription
Public propertyHeight
Gets a value representing the height of this rectangle (in pixels).
Public propertyWidth
Gets a value representing the width of this rectangle (in pixels).
Top
Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Converts the attributes of this PdfRectangle to a human-readable string.
(Overrides ValueTypeToString.)
Top
Fields
  NameDescription
Public fieldBottom
Gets a value representing the lower left y coordinate (lly) of this rectangle (in pixels).
Public fieldLeft
Gets a value representing the lower left x coordinate (llx) of this rectangle (in pixels).
Public fieldRight
Gets a value representing the upper right x coordinate (urx) of this rectangle (in pixels).
Public fieldTop
Gets a value representing the upper right y coordinate (ury) of this rectangle (in pixels).
Top
Remarks

PDF coordinates are bottom-up

See Also