UriAction

class UriAction @JvmOverloads constructor(val uri: String?, subActions: List<Action> = emptyList()) : Action

PDF Action representing a link to an external URI.

Constructors

Link copied to clipboard
constructor(uri: String?, subActions: List<Action> = emptyList())

Properties

Link copied to clipboard
open override val type: ActionType

Returns type of action to make down-casting easier.

Link copied to clipboard
val uri: String?

The URI to open when this action is triggered, or null if not set.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Compares this URI action to the specified object for equality.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for this URI action.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of this URI action for debugging purposes.