Class RenderedElementLocation
Inheritance
System.Object
RenderedElementLocation
Assembly: IronPdf.dll
Syntax
public class RenderedElementLocation : Object, IEquatable<RenderedElementLocation>
Constructors
RenderedElementLocation()
Declaration
public RenderedElementLocation()
Properties
ElementIndex
The original index of the element in document order among all matched elements.
Declaration
public int ElementIndex { get; }
Property Value
| Type |
Description |
| System.Int32 |
|
PageIndex
The zero-based page index where the element was rendered.
Declaration
public int PageIndex { get; }
Property Value
| Type |
Description |
| System.Int32 |
|
Rectangle
The bounding rectangle of the annotation marker on the page, in PDF points (1/72 inch).
Coordinates origin is the bottom-left corner of the page.
Note: This rectangle corresponds to the injected anchor marker's position,
which is placed at the start of the matched element.
Declaration
public Rectangle Rectangle { get; }
Property Value
| Type |
Description |
| IronSoftware.Drawing.Rectangle |
|
Text
The text content of the matched element.
Declaration
public string Text { get; }
Property Value
| Type |
Description |
| System.String |
|
Methods
Equals(RenderedElementLocation)
Declaration
public bool Equals(RenderedElementLocation other)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| System.Object |
obj |
|
Returns
| Type |
Description |
| System.Boolean |
|
GetHashCode()
Declaration
public override int GetHashCode()
Returns
| Type |
Description |
| System.Int32 |
|
ToString()
Declaration
public override string ToString()
Returns
| Type |
Description |
| System.String |
|
Operators
Equality(RenderedElementLocation, RenderedElementLocation)
Declaration
public static bool operator ==(RenderedElementLocation left, RenderedElementLocation right)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Inequality(RenderedElementLocation, RenderedElementLocation)
Declaration
public static bool operator !=(RenderedElementLocation left, RenderedElementLocation right)
Parameters
Returns
| Type |
Description |
| System.Boolean |
|
Implements
System.IEquatable<>