Partager via


SelectionBoundary Constructors

Definition

Overloads

SelectionBoundary(Point)

Create a new instance of SelectionBoundary if the boundary Point is known.

SelectionBoundary(Int32)

Create a new instance of SelectionBoundary if index of boundary is known.

SelectionBoundary(Point)

Create a new instance of SelectionBoundary if the boundary Point is known.

[Android.Runtime.Register(".ctor", "(Landroid/graphics/Point;)V", "", ApiSince=35)]
public SelectionBoundary (Android.Graphics.Point point);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/Point;)V", "", ApiSince=35)>]
new Android.Graphics.Pdf.Models.Selection.SelectionBoundary : Android.Graphics.Point -> Android.Graphics.Pdf.Models.Selection.SelectionBoundary

Parameters

point
Point

The point of selection boundary.

Attributes

Remarks

Create a new instance of SelectionBoundary if the boundary Point is known. Index defaults to -1.

Java documentation for android.graphics.pdf.models.selection.SelectionBoundary.SelectionBoundary(android.graphics.Point).

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

SelectionBoundary(Int32)

Create a new instance of SelectionBoundary if index of boundary is known.

[Android.Runtime.Register(".ctor", "(I)V", "", ApiSince=35)]
public SelectionBoundary (int index);
[<Android.Runtime.Register(".ctor", "(I)V", "", ApiSince=35)>]
new Android.Graphics.Pdf.Models.Selection.SelectionBoundary : int -> Android.Graphics.Pdf.Models.Selection.SelectionBoundary

Parameters

index
Int32

index of the selection boundary.

Attributes

Remarks

Create a new instance of SelectionBoundary if index of boundary is known. The text returned by PdfPageTextContent#getText() form a "stream" and inside this "stream" each character has an index. <strong>Note: </strong>Point defaults to null in this case.

Java documentation for android.graphics.pdf.models.selection.SelectionBoundary.SelectionBoundary(int).

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