Skip to content

OnMouseUp_Video

event

Delphi
property OnMouseUp_Video: TOnVideoMouseUpDown read FOnMouseUp_Video write FOnMouseUp_Video;
C++Builder
__property TOnVideoMouseUpDown OnMouseUp_Video = {read=FOnMouseUp_Video, write=FOnMouseUp_Video};
typedef void __fastcall (__closure *TOnVideoMouseUpDown)(System::TObject* Sender, System::LongInt VideoWindow, System::Uitypes::TMouseButton Button, System::Classes::TShiftState Shift, System::LongInt X, System::LongInt Y);
C#
public event OnMouseUp_VideoEventHandler OnMouseUp_Video;
public delegate void OnMouseUp_VideoEventHandler(object sender, TOnVideoMouseUpDownEventArgs e);
VB.NET
Public Event OnMouseUp_Video As OnMouseUp_VideoEventHandler
Public Delegate Sub OnMouseUp_VideoEventHandler(sender As Object, e As TOnVideoMouseUpDownEventArgs)
C++/Qt
void SetOnMouseUp_Video (TOnMouseUp_VideoCb OnMouseUp_VideoCb);
typedef void CALLBACK TOnMouseUp_VideoCb (void *Object, void *Sender, int VideoWindow, TMouseButton Button, TMouseButton Shift, int X, int Y);

occurs when the user releases a mouse button that was pressed with the mouse pointer over a component; returns the coordinates of the original video frame at the cursor location.