Go To Embedded Action
class GoToEmbeddedAction(val pdfPath: String?, @IntRange(from = 0 ) val pageIndex: Int, val isNewWindow: Boolean, subActions: List<Action> = emptyList(), val destination: Destination = Destination(
pageIndex = pageIndex,
type = DestinationType.FitPage,
left = 0f,
top = 0f,
width = 0f,
height = 0f,
zoom = 0f
)) : Action
Action that allows jumping to a PDF file that is embedded in the document.
See also
Constructors
Link copied to clipboard
constructor(pdfPath: String?, @IntRange(from = 0 ) pageIndex: Int, isNewWindow: Boolean, subActions: List<Action> = emptyList(), destination: Destination = Destination(
pageIndex = pageIndex,
type = DestinationType.FitPage,
left = 0f,
top = 0f,
width = 0f,
height = 0f,
zoom = 0f
))
Creates action instance.