AddSelectionPoint adds a point to the current polygonal selection.

If SelectionBase is ClientArea all coordinates depends from actual Zoom and scrolling.

Otherwise, if SelectionBase is Bitmap (the default) all coordinates refers bitmap pixels.

Use EndSelect to terminate selection by code.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void AddSelectionPoint(
	int x,
	int y
)
Public Sub AddSelectionPoint ( _
	x As Integer, _
	y As Integer _
)
public:
void AddSelectionPoint(
	int x, 
	int y
)

Parameters

x
Int32
the point x coordinate
y
Int32
the point y coordinate

See Also