Occurs when an area of the specified image is selected and the value of the MouseShape()()()() property is set to false.

Namespace: Dynamsoft.DotNet.TWAIN.Delegate
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public delegate void OnImageAreaSelectedHandler(
	short sImageIndex,
	int left,
	int top,
	int right,
	int bottom
)
Visual Basic
Public Delegate Sub OnImageAreaSelectedHandler ( _
	sImageIndex As Short, _
	left As Integer, _
	top As Integer, _
	right As Integer, _
	bottom As Integer _
)

Parameters

sImageIndex
Type: System..::..Int16
Specifies the index of image in buffer. The index is 0-based.
left
Type: System..::..Int32
The long point number for the left side of the rectangle are the mouse selects.
top
Type: System..::..Int32
The long point number for the top side of the rectangle are the mouse selects.
right
Type: System..::..Int32
The long point number for the right side of the rectangle are the mouse selects.
bottom
Type: System..::..Int32
The long point number for the bottom side of the rectangle are the mouse selects.

Remarks

Short sImageIndex >=0.

See Also