All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalajs.dom.event.PrintEvents.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package io.scalajs.dom.event

import scala.scalajs.js

/**
  * Print Events
  * @author [email protected]
  */
@js.native
trait PrintEvents extends js.Object {

  /**
    * The event occurs when a page has started printing, or if the print dialogue box has been closed
    */
  def onafterprint(callback: js.Function): Unit = js.native

  /**
    * The event occurs when a page is about to be printed
    */
  def onbeforeprint(callback: js.Function): Unit = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy