Occurs when the user moves the mouse while lasso selection.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public event EventHandler<LassoSelectionEventArgs> LassoSelection
Visual Basic
Public Event LassoSelection As EventHandler(Of LassoSelectionEventArgs)
Visual C++
public:
 event EventHandler<LassoSelectionEventArgs^>^ LassoSelection {
	void add (EventHandler<LassoSelectionEventArgs^>^ value);
	void remove (EventHandler<LassoSelectionEventArgs^>^ value);
}
F#
member LassoSelection : IEvent<EventHandler<LassoSelectionEventArgs>,
    LassoSelectionEventArgs>

Value

Type: System..::..EventHandler<(Of <(<'LassoSelectionEventArgs>)>)>

Remarks

This event is raised when the user moves the mouse while lasso selection. As an argument, the handler receives an object of the LassoSelectionEventArgs type that contains the size of the selection, as well as a boolean LassoSelectionEventArgs.Handled variable. The programmer can set this variable to true to prevent from row selection changing.

See Also