ErrorProvider Xojo and Real Studio Plugin

ErrorProvider.MouseDown Event

This event is fired when the error gets mouse down on.

MouseDown(
   source as RectControl,
   x as Integer,
   y as Integer) as Boolean

Parameters

source
The source control that indicates which error the even applies to.
x
X coordinate of the mouse relative to where the error is displayed.
y
Y coordinate of the mouse relative to where the error is displayed.

Returns

Boolean
Return true if you want to get mouse up event, else false.

Remarks

Use the source parameter to detect which error got mouse down.

This event follows same rules as normal REALbasic mouse down events, returning true, makes it give you a mouse MouseUp event when the mouse goes up.

See Also

ErrorProvider Control