Handles a point insertion event.

Namespace:  ceometric.ComputationalGeometry
Assembly:  ceometric.ComputationalGeometry (in ceometric.ComputationalGeometry.dll) Version: 2.4.0.0 (2.4.0.0)

Syntax

C#
public delegate void PointInsertionEventHandler(
	Object sender,
	DelaunayTriangulation2d..::.PointInsertionEventArg e
)
Visual Basic (Declaration)
Public Delegate Sub PointInsertionEventHandler ( _
	sender As Object, _
	e As DelaunayTriangulation2d..::.PointInsertionEventArg _
)
Visual C++
public delegate void PointInsertionEventHandler(
	Object^ sender, 
	DelaunayTriangulation2d..::.PointInsertionEventArg^ e
)

Parameters

sender
Type: System..::.Object
The point being inserted.
e
Type: ceometric.ComputationalGeometry..::.DelaunayTriangulation2d..::.PointInsertionEventArg
Additional information about the insertion.

See Also