Window.ListViewMouseButtonDoubleClick Method (Typed) | |
Provide a method that is invoked when a mouse button is double-clicked in a list view control. This could be used to invoke an "edit screen" for the selected item, print a report, etc. See the ListViewMouseButtonDown() method for sample syntax.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD ListViewMouseButtonDoubleClick(
oListViewMouseEvent AS ListViewMouseEvent
) AS USUAL
public virtual Usual ListViewMouseButtonDoubleClick(
ListViewMouseEvent oListViewMouseEvent
)
Request Example
View SourceParameters
- oListViewMouseEvent
- Type: ListViewMouseEvent
The ListViewMouseEvent object that describes which list control received a mouse button double-click.
Return Value
Type:
UsualThis method calls Window.Default() and returns the result of Window.Default()
Remarks Tip |
---|
Important! This is a callback method used by X#.
Normally, it should not be called in your application code.
|
See Also