| BB FlashBack SDK: FBEditor | 
| 
 OnMouseUp Description Event handler called when a mouse button 
 is released in the movie playback area of the editor.  Syntax [C#/C++] [VB.NET] Parameters bLeftBtn - set to True when the left button has been pushed. bRightBtn - set to True when the right button has been pushed. bMiddleBtn - set to True when the middle button has been pushed. bShift - set to True if the Shift key is held down. bAlt - set to True if the Alt key is held down. bCtrl - set to True if the Ctrl key is held down. X - the x coordinate of the mouse, relative to the top left corner of the movie playback area. Y - the y coordinate of the mouse, relative to the top left corner of the movie playback area.   Setting the event handler [C#] editor.OnMouseUp 
 += new IFBEditorEvents_OnMouseUpEventHandler(OnMouseUpHandler); [VB] [Delphi] [C++ Builder] See Also FBEditor::OnMouseDown FBEditor::OnMouseMove FBEditor::OnClick 
  |