Aspect class for making elements clickable. Element you attach this Aspect to can be clicked with the mouse even though they're not "natively" clickable elements. When clicked you will be able to trap that event on the server through the Clicked of the DblClicked event. Both single clicks and double clicks are supported, you can choose which of the two (or both) you wish to trap for the widget you attach this aspect to.

The AspectClickable..::.ClickEventArgs type exposes the following members.

Methods

  NameDescription
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
ToString
Returns a String that represents the current Object.
(Inherited from Object.)

Properties

  NameDescription
AltKey
Returns true if the Alt key was pressed during the click event
(Inherited from MouseEventArgs.)
CtrlKey
Returns True if the Control key was pressed during the click event
(Inherited from MouseEventArgs.)
Left
Offset from left of browser view
(Inherited from MouseEventArgs.)
ShiftKey
Returns True if the Shift key was pressed during the click event
(Inherited from MouseEventArgs.)
Top
Offset from top of browser view
(Inherited from MouseEventArgs.)

See Also