PdfPageTextContent Constructors

Definition

Overloads

PdfPageTextContent(String)

Creates a new instance of PdfPageTextContent using the raw text on the page of the document.

PdfPageTextContent(String, IList<RectF>)

Creates a new instance of PdfPageTextContent to represent text content within defined bounds represented by a non-empty list of RectF on the page of the document.

PdfPageTextContent(String)

Creates a new instance of PdfPageTextContent using the raw text on the page of the document.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=35)]
public PdfPageTextContent (string text);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "", ApiSince=35)>]
new Android.Graphics.Pdf.Content.PdfPageTextContent : string -> Android.Graphics.Pdf.Content.PdfPageTextContent

Parameters

text
String

Text content on the page.

Attributes

Remarks

Creates a new instance of PdfPageTextContent using the raw text on the page of the document. By default, the bounds will be an empty list.

Java documentation for android.graphics.pdf.content.PdfPageTextContent.PdfPageTextContent(java.lang.String).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

PdfPageTextContent(String, IList<RectF>)

Creates a new instance of PdfPageTextContent to represent text content within defined bounds represented by a non-empty list of RectF on the page of the document.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/util/List;)V", "", ApiSince=35)]
public PdfPageTextContent (string text, System.Collections.Generic.IList<Android.Graphics.RectF> bounds);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/util/List;)V", "", ApiSince=35)>]
new Android.Graphics.Pdf.Content.PdfPageTextContent : string * System.Collections.Generic.IList<Android.Graphics.RectF> -> Android.Graphics.Pdf.Content.PdfPageTextContent

Parameters

text
String

Text content within the bounds.

bounds
IList<RectF>

Bounds for the text content

Attributes

Remarks

Creates a new instance of PdfPageTextContent to represent text content within defined bounds represented by a non-empty list of RectF on the page of the document.

Java documentation for android.graphics.pdf.content.PdfPageTextContent.PdfPageTextContent(java.lang.String, java.util.List<android.graphics.RectF>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to