PdfPageTextContent Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PdfPageTextContent(String) |
Creates a new instance of |
PdfPageTextContent(String, IList<RectF>) |
Creates a new instance of |
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.
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.
- 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.
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.