PointerUpEvent Class
An event that occurs when the mouse button is released while the pointer is over a RichEdit's document.
Declaration
export class PointerUpEvent extends RichEditEvent<PointerEventArgs>
Remarks
You can define the PointerUp event handler either at the server side, at the client side, or at runtime.
Use the OnPointerUp(String) method to specify the event handler.
@(Html.DevExpress().RichEdit("richEdit")
.OnPointerUp("function(s,e){ /* your custom actions */ }")
// ...
The event handler receives an argument of the PointerEventArgs type. The argument's properties provide information specific to this event.
Inheritance
Event<TSource, TEventArgs>
RichEditEvent<TEventArgs>
PointerUpEvent
See Also
Feedback