Class PdfTextCoordinates
Represents the coordinates of the text in a PDF.
Inheritance
System.Object
PdfTextCoordinates
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.SfPdfViewer.UWP.dll
Syntax
public class PdfTextCoordinates : Object
Constructors
PdfTextCoordinates(String, Int32, Double, Double, Double, Double)
Creates a new instance of the PdfTextCoordinates class.
Declaration
public PdfTextCoordinates(string Text, int PageIndex, double Xaxis, double Yaxis, double Width, double Height)
Parameters
Type | Name | Description |
---|---|---|
System.String | Text | The value of the text |
System.Int32 | PageIndex | The index of the page in which the text is present |
System.Double | Xaxis | The X position of the text |
System.Double | Yaxis | The Y position of the text |
System.Double | Width | The width of the text |
System.Double | Height | The height of the text |
Properties
Height
The height of the text
Declaration
public double Height { get; }
Property Value
Type | Description |
---|---|
System.Double |
PageIndex
The index of the page in which the text is present.
Declaration
public int PageIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Text
The value of the text
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
Width
The width of the text
Declaration
public double Width { get; }
Property Value
Type | Description |
---|---|
System.Double |
Xaxis
The X position of the text.
Declaration
public double Xaxis { get; }
Property Value
Type | Description |
---|---|
System.Double |
Yaxis
The Y position of the text.
Declaration
public double Yaxis { get; }
Property Value
Type | Description |
---|---|
System.Double |