GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::DOM::Event::UI(3) User Contributed Perl Documentation HTML::DOM::Event::UI(3)

HTML::DOM::Event::UI - A Perl class for HTML DOM UIEvent objects

Version 0.058

  # ...

This class provides UIEvent objects for HTML::DOM, which objects are passed to event handlers for certain event types when they are invoked. It inherits from HTML::DOM::Event.

See also those inherited from HTML::DOM::Event.

These are both read-only and ignore their arguments.
view
The view object associated with the event.
detail
A number that's meant to specify some info about the event. For instance, for the DOMActivate event, 1 is a normal activation, and 2 is a hyperactivation (whatever that means). A click event on an element triggers a DOMActivate event, simply copying the "detail" attribute from the click event.

initUIEvent ( $name, $propagates_up, $cancellable, $view, $detail )
This initialises the event object. See "initEvent" in HTML::DOM::Event for more detail.
init ( ... )
Alternative to "initUIEvent" that's easier to use:

  init $event
      type => $type,
      propagates_up => 1,
      cancellable => 1,
      view => $view,
      detail => 1,
  ;
    

HTML::DOM

HTML::DOM::Event

HTML::DOM::Event::Mouse

Hey! The above document had some coding errors, which are explained below:
Around line 106:
=over without closing =back
2018-02-02 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.