SelectionBoundary


class SelectionBoundary : Parcelable
kotlin.Any
   ↳ android.graphics.pdf.models.selection.SelectionBoundary

Represents one edge of the selected content.

Summary

Inherited constants
Public constructors

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

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

Public methods
Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

Int

Gets the index of the text as determined by the text stream processed.

Boolean

Gets whether the direction of selection is right-to-left (rtl) or reverse.

Point?

Gets the x, y coordinates of the selection boundary in points (1/72").

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<SelectionBoundary!>

Public constructors

SelectionBoundary

SelectionBoundary(point: Point)

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

Parameters
point Point: The point of selection boundary.
This value cannot be null.
Exceptions
java.lang.NullPointerException If the point is null.

SelectionBoundary

SelectionBoundary(index: Int)

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. Note: Point defaults to null in this case.

Parameters
index Int: index of the selection boundary.
Exceptions
java.lang.IllegalArgumentException If the index is negative.

Public methods

describeContents

Added in API level 35
fun describeContents(): Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel,int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.
Value is either 0 or

getIndex

fun getIndex(): Int

Gets the index of the text as determined by the text stream processed. If the value is -1 then the getPoint() will determine the selection boundary.

Return
Int index of the selection boundary.

getIsRtl

fun getIsRtl(): Boolean

Gets whether the direction of selection is right-to-left (rtl) or reverse. The value of isRtl is determined by the underlying native layer using the start and stop boundaries.

Return
Boolean The direction of selection

getPoint

fun getPoint(): Point?

Gets the x, y coordinates of the selection boundary in points (1/72"). These coordinates are represented by a Point . If the value is null then the getIndex() will determine the selection boundary.

Note: Point (0,0) represents the top-left corner of the page

Return
Point? The point of the selection boundary.

writeToParcel

Added in API level 35
fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest Parcel: This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.
Value is either 0 or a combination of the following:

Properties

CREATOR

static val CREATOR: Parcelable.Creator<SelectionBoundary!>