Occurs when the user starts the 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> LassoSelectionBegin
Visual Basic
Public Event LassoSelectionBegin As EventHandler(Of LassoSelectionEventArgs)
Visual C++
public:
 event EventHandler<LassoSelectionEventArgs^>^ LassoSelectionBegin {
	void add (EventHandler<LassoSelectionEventArgs^>^ value);
	void remove (EventHandler<LassoSelectionEventArgs^>^ value);
}
F#
member LassoSelectionBegin : IEvent<EventHandler<LassoSelectionEventArgs>,
    LassoSelectionEventArgs>

Value

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

Remarks

This event is raised when the user starts the 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 cancel the lasso selection.

See Also