ErrorProvider Xojo Plugin |
|
DesktopErrorProvider.MouseUp Event
This event is fired when the error gets mouse up on.

MouseUp(
source
as DesktopUIControl,
legacySource
as RectControl,
x
as Integer,
y
as Integer)
Parameters
- source
- The source control that indicates which error the event applies to. (This can be nil if the source is old style control, in which case the legacySource parameter would contain reference to the control).
- legacySource
- The legacy source control that indicates which error the event applies to. (This can be nil if the source is new style control, in which case the source parameter would contain reference to the control)
- 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.
Remarks
Use the source parameters to detect which error got mouse up.
This event follows same rules as normal Xojo mouse up events. MouseUp does not fire unless true was returned in MouseDown.
See Also
DesktopErrorProvider Control